├── .clang-format ├── .gitignore ├── .readthedocs.yaml ├── .spelling └── cgru.dic ├── LICENSE.txt ├── README.md ├── afanasy ├── .gitignore ├── browser │ ├── COPYING │ ├── COPYING.lesser │ ├── branches.js │ ├── browser.js │ ├── common.js │ ├── farm.js │ ├── index.html │ ├── jobs.js │ ├── listen.js │ ├── monitor.js │ ├── monitors.js │ ├── network.js │ ├── plotter.js │ ├── pools.js │ ├── renders.js │ ├── style.css │ ├── tasks.js │ ├── users.js │ ├── window.html │ ├── wndtask.js │ └── work.js ├── config_default.json ├── doc │ ├── HOWTO.md │ └── doxygen │ │ ├── .gitignore │ │ ├── afanasy │ │ ├── render │ │ └── watch ├── icons │ └── watch │ │ ├── Dark │ │ └── watch.json │ │ ├── Hello Kitty Hell │ │ ├── border_botleft.png │ │ ├── border_botright.png │ │ ├── border_topleft.png │ │ ├── border_topright.png │ │ ├── buttons │ │ │ ├── jobs.png │ │ │ ├── jobs_h.png │ │ │ ├── jobs_p.png │ │ │ ├── jobs_t.png │ │ │ ├── renders.png │ │ │ ├── renders_h.png │ │ │ ├── renders_p.png │ │ │ ├── renders_t.png │ │ │ ├── users.png │ │ │ ├── users_h.png │ │ │ ├── users_p.png │ │ │ └── users_t.png │ │ ├── hello_kitty_hell.png │ │ └── watch.json │ │ ├── Hello Kitty │ │ ├── border_bot.png │ │ ├── border_bot_left.png │ │ ├── border_bot_right.png │ │ ├── border_top_left.png │ │ ├── border_top_right.png │ │ ├── buttons │ │ │ ├── jobs.png │ │ │ ├── jobs_h.png │ │ │ ├── jobs_p.png │ │ │ ├── jobs_t.png │ │ │ ├── renders.png │ │ │ ├── renders_h.png │ │ │ ├── renders_p.png │ │ │ ├── renders_t.png │ │ │ ├── users.png │ │ │ ├── users_h.png │ │ │ ├── users_p.png │ │ │ └── users_t.png │ │ ├── hello_kitty.png │ │ ├── snap_left_off.png │ │ ├── snap_left_on.png │ │ ├── snap_right_off.png │ │ ├── snap_right_on.png │ │ └── watch.json │ │ ├── Light │ │ └── watch.json │ │ ├── Military │ │ ├── afanasy.png │ │ ├── border_botleft.png │ │ ├── border_botright.png │ │ ├── border_topleft.png │ │ ├── border_topright.png │ │ ├── buttons │ │ │ ├── jobs.png │ │ │ ├── jobs_h.png │ │ │ ├── jobs_p.png │ │ │ ├── jobs_t.png │ │ │ ├── renders.png │ │ │ ├── renders_h.png │ │ │ ├── renders_p.png │ │ │ ├── renders_t.png │ │ │ ├── users.png │ │ │ ├── users_h.png │ │ │ ├── users_p.png │ │ │ └── users_t.png │ │ └── watch.json │ │ └── offlineimage.png ├── package │ ├── afanasy-common.sh │ ├── afanasy-common │ │ ├── DEBIAN │ │ │ ├── control │ │ │ └── prerm │ │ └── RPM │ │ │ └── SPECS │ │ │ └── afanasy-common.spec │ ├── afanasy-qtgui.sh │ ├── afanasy-qtgui │ │ ├── DEBIAN │ │ │ ├── control │ │ │ └── prerm │ │ └── RPM │ │ │ └── SPECS │ │ │ └── afanasy-qtgui.spec │ ├── afanasy-render.sh │ ├── afanasy-render │ │ ├── DEBIAN │ │ │ ├── control │ │ │ ├── postinst │ │ │ ├── preinst │ │ │ └── prerm │ │ ├── RPM │ │ │ └── SPECS │ │ │ │ └── afanasy-render.spec │ │ └── usr │ │ │ └── lib │ │ │ └── systemd │ │ │ └── system │ │ │ └── afrender.service │ ├── afanasy-server.sh │ └── afanasy-server │ │ ├── DEBIAN │ │ ├── control │ │ ├── postinst │ │ ├── preinst │ │ └── prerm │ │ ├── RPM │ │ └── SPECS │ │ │ └── afanasy-server.spec │ │ └── usr │ │ └── lib │ │ └── systemd │ │ └── system │ │ └── afserver.service ├── python │ ├── af.py │ ├── afcmd.py │ ├── afcommon.py │ ├── afjob.py │ ├── afjob_maintenance.py │ ├── afnetwork.py │ ├── afsend.py │ ├── check_afcommon.py │ ├── check_parser.py │ ├── check_resource.py │ ├── parsers │ │ ├── __init__.py │ │ ├── afterfx.py │ │ ├── arnold.py │ │ ├── awscli.py │ │ ├── blender.py │ │ ├── blender_cycles.py │ │ ├── blender_render.py │ │ ├── blender_yafray.py │ │ ├── c4d.py │ │ ├── clarisse.py │ │ ├── curl.py │ │ ├── ffmpeg.py │ │ ├── ftrack.py │ │ ├── fusion.py │ │ ├── generic.py │ │ ├── hbatch.py │ │ ├── hbatch_karma.py │ │ ├── hbatch_mantra.py │ │ ├── hbatch_prman.py │ │ ├── hbatch_redshift.py │ │ ├── houdinitoarnold.py │ │ ├── karma.py │ │ ├── lightwave.py │ │ ├── mantra.py │ │ ├── max.py │ │ ├── maya.py │ │ ├── maya_arnold.py │ │ ├── maya_delight.py │ │ ├── maya_mental.py │ │ ├── maya_redshift.py │ │ ├── mayafumefx.py │ │ ├── mayatoarnold.py │ │ ├── mayatomr.py │ │ ├── mayatovray.py │ │ ├── mentalray.py │ │ ├── natron.py │ │ ├── nuke.py │ │ ├── parser.py │ │ ├── prman.py │ │ ├── redline.py │ │ ├── redshift.py │ │ ├── rsync.py │ │ ├── rvio.py │ │ ├── shotgun.py │ │ ├── vray.py │ │ ├── xsi.py │ │ ├── xsi_arnold.py │ │ ├── xsi_arnold_watermarked.py │ │ ├── xsi_redshift.py │ │ └── yafray.py │ ├── resources │ │ ├── __init__.py │ │ ├── example.py │ │ ├── getCPUTemperature.py │ │ ├── getHWInfo.py │ │ ├── iostat.py │ │ ├── nvidia_smi.py │ │ └── resbase.py │ └── services │ │ ├── __init__.py │ │ ├── afterfx.py │ │ ├── arnold.py │ │ ├── blender.py │ │ ├── blender_internal.py │ │ ├── c4d.py │ │ ├── checksum.py │ │ ├── clarisse.py │ │ ├── events.py │ │ ├── ffmpeg.py │ │ ├── ftp.py │ │ ├── ftrack.py │ │ ├── fusion.py │ │ ├── generic.py │ │ ├── hbatch.py │ │ ├── hbatch_karma.py │ │ ├── hbatch_mantra.py │ │ ├── hbatch_pdg.py │ │ ├── hbatch_prman.py │ │ ├── hbatch_redshift.py │ │ ├── houdinitoarnold.py │ │ ├── htracker.py │ │ ├── karma.py │ │ ├── lightwave.py │ │ ├── mantra.py │ │ ├── max.py │ │ ├── maya.py │ │ ├── maya_arnold.py │ │ ├── maya_delight.py │ │ ├── maya_mental.py │ │ ├── maya_redshift.py │ │ ├── mayatoarnold.py │ │ ├── mayatomr.py │ │ ├── mayatovray.py │ │ ├── mentalray.py │ │ ├── movgen.py │ │ ├── natron.py │ │ ├── nuke.py │ │ ├── postcmd.py │ │ ├── prman.py │ │ ├── redline.py │ │ ├── rsync.py │ │ ├── service.py │ │ ├── shotgun.py │ │ ├── system.py │ │ ├── test.py │ │ ├── tiles_stitch.py │ │ ├── vray.py │ │ ├── wakeonlan.py │ │ ├── walk.py │ │ ├── xsi.py │ │ ├── xsi_arnold.py │ │ ├── xsi_arnold_watermarked.py │ │ └── xsi_redshift.py ├── service │ ├── .gitignore │ ├── afrender_create.cmd │ ├── afrender_delete.cmd │ ├── afrender_start.cmd │ ├── afrender_stop.cmd │ ├── afserver_create.cmd │ ├── afserver_delete.cmd │ ├── afserver_start.cmd │ ├── afserver_stop.cmd │ └── setup.cmd ├── setup.cmd ├── setup.sh ├── setup_README.cmd ├── setup_README.sh ├── setup_cgru.cmd ├── setup_cgru.sh ├── setup_coding.cmd ├── src │ ├── .gitignore │ ├── cmd │ │ ├── afcmd.cpp │ │ ├── afcmd.h │ │ ├── afcmdregister.cpp │ │ ├── cmd.cpp │ │ ├── cmd.h │ │ ├── cmd_arguments.cpp │ │ ├── cmd_arguments.h │ │ ├── cmd_config.cpp │ │ ├── cmd_config.h │ │ ├── cmd_confirm.cpp │ │ ├── cmd_confirm.h │ │ ├── cmd_database.cpp │ │ ├── cmd_database.h │ │ ├── cmd_invalid.cpp │ │ ├── cmd_invalid.h │ │ ├── cmd_job.cpp │ │ ├── cmd_job.h │ │ ├── cmd_json.cpp │ │ ├── cmd_json.h │ │ ├── cmd_monitor.cpp │ │ ├── cmd_monitor.h │ │ ├── cmd_network.cpp │ │ ├── cmd_network.h │ │ ├── cmd_numeric.cpp │ │ ├── cmd_numeric.h │ │ ├── cmd_parse.h │ │ ├── cmd_passwd.cpp │ │ ├── cmd_passwd.h │ │ ├── cmd_path.cpp │ │ ├── cmd_path.h │ │ ├── cmd_pool.cpp │ │ ├── cmd_pool.h │ │ ├── cmd_regexp.cpp │ │ ├── cmd_regexp.h │ │ ├── cmd_render.cpp │ │ ├── cmd_render.h │ │ ├── cmd_service.h │ │ ├── cmd_statistics.cpp │ │ ├── cmd_statistics.h │ │ ├── cmd_string.cpp │ │ ├── cmd_string.h │ │ ├── cmd_task.cpp │ │ ├── cmd_task.h │ │ ├── cmd_test.cpp │ │ ├── cmd_test.h │ │ ├── cmd_text.cpp │ │ ├── cmd_text.h │ │ ├── cmd_user.cpp │ │ ├── cmd_user.h │ │ └── main.cpp │ ├── fermer │ │ ├── BladeObject.cpp │ │ ├── BladeObject.h │ │ ├── BladesModel.cpp │ │ ├── BladesModel.h │ │ ├── General.cpp │ │ ├── General.h │ │ ├── JobObject.cpp │ │ ├── JobObject.h │ │ ├── JobsModel.cpp │ │ ├── JobsModel.h │ │ ├── Managers │ │ │ ├── BladeObjectsManager.cpp │ │ │ ├── BladeObjectsManager.h │ │ │ ├── JobObjectsManager.cpp │ │ │ ├── JobObjectsManager.h │ │ │ ├── Lorries │ │ │ │ ├── BladeObjectsLorry.cpp │ │ │ │ ├── BladeObjectsLorry.h │ │ │ │ ├── JobObjectsLorry.cpp │ │ │ │ ├── JobObjectsLorry.h │ │ │ │ ├── UserObjectsLorry.cpp │ │ │ │ └── UserObjectsLorry.h │ │ │ ├── Service │ │ │ │ ├── RadiolocationService.cpp │ │ │ │ ├── RadiolocationService.h │ │ │ │ ├── RadiolocationServiceMethods.cpp │ │ │ │ └── Station │ │ │ │ │ ├── RadiolocationStation.cpp │ │ │ │ │ └── RadiolocationStation.h │ │ │ ├── UserObjectsManager.cpp │ │ │ └── UserObjectsManager.h │ │ ├── Py │ │ │ ├── PyAfermer.cpp │ │ │ ├── PyAfermer.h │ │ │ ├── PythonStdIoRedirect.hpp │ │ │ ├── pyqlist.hpp │ │ │ └── pyqstring.hpp │ │ ├── RotateValue.cpp │ │ ├── RotateValue.h │ │ ├── TaskObject.cpp │ │ ├── TaskObject.h │ │ ├── TasksModel.cpp │ │ ├── TasksModel.h │ │ ├── UserObject.cpp │ │ ├── UserObject.h │ │ ├── UsersModel.cpp │ │ ├── UsersModel.h │ │ ├── common.h │ │ ├── highlighter.cpp │ │ ├── highlighter.h │ │ ├── main.cpp │ │ ├── qml │ │ │ ├── About.qml │ │ │ ├── BladeContextMenu.qml │ │ │ ├── BladeDelegate.qml │ │ │ ├── BladesInfo.qml │ │ │ ├── BladesView.qml │ │ │ ├── InfoDialog.qml │ │ │ ├── InputDialog.qml │ │ │ ├── JobContextMenu.qml │ │ │ ├── JobDelegate.qml │ │ │ ├── JobInfo.qml │ │ │ ├── JobTasks.qml │ │ │ ├── JobTimeGraph.qml │ │ │ ├── JobsView.qml │ │ │ ├── Loading.qml │ │ │ ├── MainMenu.qml │ │ │ ├── MetricJobAtWeek.qml │ │ │ ├── MetricsView.qml │ │ │ ├── NoConnection.qml │ │ │ ├── NodeView.qml │ │ │ ├── RobotoTTF │ │ │ │ ├── .directory │ │ │ │ ├── Roboto-Black.ttf │ │ │ │ ├── Roboto-BlackItalic.otf │ │ │ │ ├── Roboto-BlackItalic.pfb │ │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ │ ├── Roboto-Italic.ttf │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ ├── Roboto-LightItalic.ttf │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ ├── Roboto-Thin200Italic.otf │ │ │ │ ├── Roboto-ThinItalic.ttf │ │ │ │ ├── RobotoCondensed-Bold.ttf │ │ │ │ ├── RobotoCondensed-BoldItalic.ttf │ │ │ │ ├── RobotoCondensed-Italic.ttf │ │ │ │ ├── RobotoCondensed-Light.ttf │ │ │ │ ├── RobotoCondensed-LightItalic.ttf │ │ │ │ ├── RobotoCondensed-Regular.ttf │ │ │ │ └── SF-UI-Text-BoldItalic.ttf │ │ │ ├── SanFranciscoTTF │ │ │ │ ├── .directory │ │ │ │ ├── SF-UI-Display-Black.ttf │ │ │ │ ├── SF-UI-Display-Bold.ttf │ │ │ │ ├── SF-UI-Display-Heavy.ttf │ │ │ │ ├── SF-UI-Display-Light.ttf │ │ │ │ ├── SF-UI-Display-Medium.ttf │ │ │ │ ├── SF-UI-Display-Regular.ttf │ │ │ │ ├── SF-UI-Display-Semibold.ttf │ │ │ │ ├── SF-UI-Display-Thin.ttf │ │ │ │ ├── SF-UI-Display-Ultralight.ttf │ │ │ │ ├── SF-UI-Text-Bold.ttf │ │ │ │ ├── SF-UI-Text-BoldItalic.ttf │ │ │ │ ├── SF-UI-Text-Heavy.ttf │ │ │ │ ├── SF-UI-Text-HeavyItalic.ttf │ │ │ │ ├── SF-UI-Text-Italic.ttf │ │ │ │ ├── SF-UI-Text-Light.ttf │ │ │ │ ├── SF-UI-Text-LightItalic.ttf │ │ │ │ ├── SF-UI-Text-Medium.ttf │ │ │ │ ├── SF-UI-Text-MediumItalic.ttf │ │ │ │ ├── SF-UI-Text-Regular.ttf │ │ │ │ ├── SF-UI-Text-Semibold.ttf │ │ │ │ └── SF-UI-Text-SemiboldItalic.ttf │ │ │ ├── SideView.qml │ │ │ ├── TaskDelegate.qml │ │ │ ├── TerminalView.qml │ │ │ ├── ToolTipButton.qml │ │ │ ├── UsageBar.qml │ │ │ ├── UserContextMenu.qml │ │ │ ├── UserDelegate.qml │ │ │ ├── UsersInfo.qml │ │ │ ├── UsersView.qml │ │ │ ├── icons │ │ │ │ ├── align_center.svg │ │ │ │ ├── align_left.svg │ │ │ │ ├── align_right.svg │ │ │ │ ├── blades.svg │ │ │ │ ├── dots_menu.svg │ │ │ │ ├── fermer.svg │ │ │ │ ├── icon.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── logo_small.png │ │ │ │ ├── metric.svg │ │ │ │ ├── nodes.svg │ │ │ │ ├── remove.png │ │ │ │ ├── remove.svg │ │ │ │ ├── search.svg │ │ │ │ ├── soft │ │ │ │ │ ├── afterfx.svg │ │ │ │ │ ├── arnold.svg │ │ │ │ │ ├── blender.svg │ │ │ │ │ ├── generic.svg │ │ │ │ │ ├── hbatch.svg │ │ │ │ │ ├── hbatch_mantra.svg │ │ │ │ │ ├── houdinitoarnold.svg │ │ │ │ │ ├── htracker.svg │ │ │ │ │ ├── mantra.svg │ │ │ │ │ ├── max.svg │ │ │ │ │ ├── maya.svg │ │ │ │ │ ├── maya_arnold.svg │ │ │ │ │ ├── nuke.svg │ │ │ │ │ └── nukex.svg │ │ │ │ ├── soft_circl_icon.png │ │ │ │ ├── tasks.svg │ │ │ │ ├── terminal.svg │ │ │ │ └── users.svg │ │ │ ├── main.qml │ │ │ ├── root_ui.qml │ │ │ ├── timeChange.js │ │ │ └── view.qml │ │ ├── state.hpp │ │ └── version_config.h │ ├── include │ │ ├── afanasy.h │ │ ├── afgui.h │ │ ├── afjob.h │ │ ├── afpynames.h │ │ ├── afversion.h │ │ └── macrooutput.h │ ├── libafanasy │ │ ├── address.cpp │ │ ├── address.h │ │ ├── af.cpp │ │ ├── af.h │ │ ├── afattr.cpp │ │ ├── afattr.h │ │ ├── affarm.cpp │ │ ├── affarm.h │ │ ├── afnode.cpp │ │ ├── afnode.h │ │ ├── afqueue.cpp │ │ ├── afqueue.h │ │ ├── afwork.cpp │ │ ├── afwork.h │ │ ├── blockdata.cpp │ │ ├── blockdata.h │ │ ├── branch.cpp │ │ ├── branch.h │ │ ├── client.cpp │ │ ├── client.h │ │ ├── common │ │ │ ├── base64.cpp │ │ │ ├── dlCompileAssert.h │ │ │ ├── dlMutex.cpp │ │ │ ├── dlMutex.h │ │ │ ├── dlRWLock.cpp │ │ │ ├── dlRWLock.h │ │ │ ├── dlScopeLocker.h │ │ │ ├── dlThread.cpp │ │ │ ├── dlThread.h │ │ │ ├── dlThreadLocalStorage.cpp │ │ │ ├── dlThreadLocalStorage.h │ │ │ ├── launchprogram.cpp │ │ │ ├── md5.cpp │ │ │ ├── md5.h │ │ │ ├── passwd.cpp │ │ │ └── passwd.h │ │ ├── environment.cpp │ │ ├── environment.h │ │ ├── hostres.cpp │ │ ├── hostres.h │ │ ├── job.cpp │ │ ├── job.h │ │ ├── jobprogress.cpp │ │ ├── jobprogress.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── logger.cpp │ │ ├── logger.h │ │ ├── monitor.cpp │ │ ├── monitor.h │ │ ├── monitorevents.cpp │ │ ├── monitorevents.h │ │ ├── msg.cpp │ │ ├── msg.h │ │ ├── msgclasses │ │ │ ├── mcafnodes.cpp │ │ │ ├── mcafnodes.h │ │ │ ├── mcgeneral.cpp │ │ │ ├── mcgeneral.h │ │ │ ├── mcjobsweight.cpp │ │ │ ├── mcjobsweight.h │ │ │ ├── mctask.cpp │ │ │ ├── mctask.h │ │ │ ├── mctaskpos.cpp │ │ │ ├── mctaskpos.h │ │ │ ├── mctasksprogress.cpp │ │ │ ├── mctasksprogress.h │ │ │ ├── mctaskup.cpp │ │ │ ├── mctaskup.h │ │ │ ├── mctest.cpp │ │ │ ├── mctest.h │ │ │ ├── msgclass.cpp │ │ │ ├── msgclass.h │ │ │ ├── msgclassuserhost.cpp │ │ │ └── msgclassuserhost.h │ │ ├── msgqueue.cpp │ │ ├── msgqueue.h │ │ ├── msgstat.cpp │ │ ├── msgstat.h │ │ ├── name_af.cpp │ │ ├── name_af.h │ │ ├── name_affile.cpp │ │ ├── name_afjson.cpp │ │ ├── name_afnet.cpp │ │ ├── name_afpy.cpp │ │ ├── name_afstr.cpp │ │ ├── netif.cpp │ │ ├── netif.h │ │ ├── pool.cpp │ │ ├── pool.h │ │ ├── pyclass.cpp │ │ ├── pyclass.h │ │ ├── pymodule.cpp │ │ ├── pymodule.h │ │ ├── rapidjson │ │ │ ├── allocators.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── filereadstream.h │ │ │ ├── filestream.h │ │ │ ├── filewritestream.h │ │ │ ├── internal │ │ │ │ ├── pow10.h │ │ │ │ ├── stack.h │ │ │ │ └── strfunc.h │ │ │ ├── license.txt │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── stringbuffer.h │ │ │ └── writer.h │ │ ├── regexp.cpp │ │ ├── regexp.h │ │ ├── render.cpp │ │ ├── render.h │ │ ├── renderevents.cpp │ │ ├── renderevents.h │ │ ├── renderupdate.cpp │ │ ├── renderupdate.h │ │ ├── service.cpp │ │ ├── service.h │ │ ├── taskdata.cpp │ │ ├── taskdata.h │ │ ├── taskexec.cpp │ │ ├── taskexec.h │ │ ├── taskprogress.cpp │ │ ├── taskprogress.h │ │ ├── user.cpp │ │ └── user.h │ ├── libafqt │ │ ├── attr.cpp │ │ ├── attr.h │ │ ├── attrcolor.cpp │ │ ├── attrcolor.h │ │ ├── attrrect.cpp │ │ ├── attrrect.h │ │ ├── name_afqt.cpp │ │ ├── name_afqt.h │ │ ├── qafclient.cpp │ │ ├── qafclient.h │ │ ├── qenvironment.cpp │ │ └── qenvironment.h │ ├── libafsql │ │ ├── dbattr.cpp │ │ ├── dbattr.h │ │ ├── dbconnection.cpp │ │ ├── dbconnection.h │ │ ├── dbitem.cpp │ │ ├── dbitem.h │ │ ├── dbjob.cpp │ │ ├── dbjob.h │ │ ├── dblog.cpp │ │ ├── dblog.h │ │ ├── dbtask.cpp │ │ ├── dbtask.h │ │ ├── libpq-fe-empty.h │ │ ├── name_afsql.cpp │ │ └── name_afsql.h │ ├── project.cmake │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── FindPostgreSQL.cmake │ │ ├── build.sh │ │ ├── build_ostype.sh │ │ ├── clear.py │ │ ├── cmd │ │ │ └── CMakeLists.txt │ │ ├── fermer │ │ │ └── CMakeLists.txt │ │ ├── libafanasy │ │ │ └── CMakeLists.txt │ │ ├── libafqt │ │ │ └── CMakeLists.txt │ │ ├── libafsql │ │ │ └── CMakeLists.txt │ │ ├── render │ │ │ └── CMakeLists.txt │ │ ├── server │ │ │ └── CMakeLists.txt │ │ ├── service │ │ │ └── CMakeLists.txt │ │ ├── watch │ │ │ └── CMakeLists.txt │ │ └── win_build_msvc.cmd │ ├── project.mxxru │ │ ├── afanasy.mxw.rb │ │ ├── build.sh │ │ ├── clear.py │ │ ├── cmd.mxx.rb │ │ ├── libafanasy.mxx.rb │ │ ├── libafqt.mxx.rb │ │ ├── libafsql.mxx.rb │ │ ├── mac_build.sh │ │ ├── render.mxx.rb │ │ ├── server.mxx.rb │ │ ├── watch.mxx.rb │ │ └── win_build_msvc.cmd │ ├── project.qmake │ │ ├── .gitignore │ │ ├── build.sh │ │ ├── clear.py │ │ ├── cmd │ │ │ └── cmd.pro │ │ ├── libafanasy │ │ │ └── libafanasy.pro │ │ ├── libafqt │ │ │ └── libafqt.pro │ │ ├── libafsql │ │ │ └── libafsql.pro │ │ ├── project.pro │ │ ├── render │ │ │ └── render.pro │ │ ├── server │ │ │ └── server.pro │ │ └── watch │ │ │ └── watch.pro │ ├── render │ │ ├── main.cpp │ │ ├── parserhost.cpp │ │ ├── parserhost.h │ │ ├── pyres.cpp │ │ ├── pyres.h │ │ ├── renderhost.cpp │ │ ├── renderhost.h │ │ ├── res.cpp │ │ ├── res.h │ │ ├── res_gpu_nvidia.cpp │ │ ├── res_linux.cpp │ │ ├── res_macosx.cpp │ │ ├── res_windows.cpp │ │ ├── taskprocess.cpp │ │ └── taskprocess.h │ ├── server │ │ ├── action.cpp │ │ ├── action.h │ │ ├── afcommon.cpp │ │ ├── afcommon.h │ │ ├── afcontainer.cpp │ │ ├── afcontainer.h │ │ ├── afcontainerit.cpp │ │ ├── afcontainerit.h │ │ ├── aflist.cpp │ │ ├── aflist.h │ │ ├── afnodefarm.cpp │ │ ├── afnodefarm.h │ │ ├── afnodesolve.cpp │ │ ├── afnodesolve.h │ │ ├── afnodesrv.cpp │ │ ├── afnodesrv.h │ │ ├── auth.cpp │ │ ├── auth.h │ │ ├── block.cpp │ │ ├── block.h │ │ ├── branchescontainer.cpp │ │ ├── branchescontainer.h │ │ ├── branchsrv.cpp │ │ ├── branchsrv.h │ │ ├── dbqueue.cpp │ │ ├── dbqueue.h │ │ ├── filequeue.cpp │ │ ├── filequeue.h │ │ ├── httpget.cpp │ │ ├── httpget.hpp │ │ ├── jobaf.cpp │ │ ├── jobaf.h │ │ ├── jobcontainer.cpp │ │ ├── jobcontainer.h │ │ ├── logqueue.cpp │ │ ├── logqueue.h │ │ ├── main.cpp │ │ ├── monitoraf.cpp │ │ ├── monitoraf.h │ │ ├── monitorcontainer.cpp │ │ ├── monitorcontainer.h │ │ ├── poolscontainer.cpp │ │ ├── poolscontainer.h │ │ ├── poolsrv.cpp │ │ ├── poolsrv.h │ │ ├── profiler.cpp │ │ ├── profiler.h │ │ ├── renderaf.cpp │ │ ├── renderaf.h │ │ ├── rendercontainer.cpp │ │ ├── rendercontainer.h │ │ ├── socketsprocessing.cpp │ │ ├── socketsprocessing.h │ │ ├── solver.cpp │ │ ├── solver.h │ │ ├── store.cpp │ │ ├── store.h │ │ ├── sysjob.cpp │ │ ├── sysjob.h │ │ ├── sysjob_cmdpost.cpp │ │ ├── sysjob_cmdpost.h │ │ ├── sysjob_events.cpp │ │ ├── sysjob_events.h │ │ ├── sysjob_wol.cpp │ │ ├── sysjob_wol.h │ │ ├── task.cpp │ │ ├── task.h │ │ ├── taskrun.cpp │ │ ├── taskrun.h │ │ ├── taskrunmulti.cpp │ │ ├── taskrunmulti.h │ │ ├── threadacceptclient.cpp │ │ ├── threadargs.h │ │ ├── threadprocessjson.cpp │ │ ├── threadprocessmsgcase.cpp │ │ ├── threadrun.cpp │ │ ├── threadrunjson.cpp │ │ ├── threadrunmsgcase.cpp │ │ ├── useraf.cpp │ │ ├── useraf.h │ │ ├── usercontainer.cpp │ │ └── usercontainer.h │ ├── service │ │ └── main.cpp │ └── watch │ │ ├── actionid.cpp │ │ ├── actionid.h │ │ ├── blockinfo.cpp │ │ ├── blockinfo.h │ │ ├── button.cpp │ │ ├── button.h │ │ ├── buttondblclick.cpp │ │ ├── buttondblclick.h │ │ ├── buttonmonitor.cpp │ │ ├── buttonmonitor.h │ │ ├── buttonpanel.cpp │ │ ├── buttonpanel.h │ │ ├── buttonsmenu.cpp │ │ ├── buttonsmenu.h │ │ ├── buttonsnapwnd.cpp │ │ ├── buttonsnapwnd.h │ │ ├── checkboxwidget.cpp │ │ ├── checkboxwidget.h │ │ ├── colorwidget.cpp │ │ ├── colorwidget.h │ │ ├── ctrljobs.cpp │ │ ├── ctrljobs.h │ │ ├── ctrlrenders.cpp │ │ ├── ctrlrenders.h │ │ ├── ctrlsortfilter.cpp │ │ ├── ctrlsortfilter.h │ │ ├── ctrlsortfiltermenu.cpp │ │ ├── ctrlsortfiltermenu.h │ │ ├── dialog.cpp │ │ ├── dialog.h │ │ ├── filewidget.cpp │ │ ├── filewidget.h │ │ ├── fontwidget.cpp │ │ ├── fontwidget.h │ │ ├── infoline.cpp │ │ ├── infoline.h │ │ ├── item.cpp │ │ ├── item.h │ │ ├── itembranch.cpp │ │ ├── itembranch.h │ │ ├── itembutton.cpp │ │ ├── itembutton.h │ │ ├── itemfarm.cpp │ │ ├── itemfarm.h │ │ ├── itemjob.cpp │ │ ├── itemjob.h │ │ ├── itemjobblock.cpp │ │ ├── itemjobblock.h │ │ ├── itemjobtask.cpp │ │ ├── itemjobtask.h │ │ ├── itemmonitor.cpp │ │ ├── itemmonitor.h │ │ ├── itemnode.cpp │ │ ├── itemnode.h │ │ ├── itempool.cpp │ │ ├── itempool.h │ │ ├── itemrender.cpp │ │ ├── itemrender.h │ │ ├── itemuser.cpp │ │ ├── itemuser.h │ │ ├── itemwork.cpp │ │ ├── itemwork.h │ │ ├── labelversion.cpp │ │ ├── labelversion.h │ │ ├── listitems.cpp │ │ ├── listitems.h │ │ ├── listjobs.cpp │ │ ├── listjobs.h │ │ ├── listmonitors.cpp │ │ ├── listmonitors.h │ │ ├── listnodes.cpp │ │ ├── listnodes.h │ │ ├── listrenders.cpp │ │ ├── listrenders.h │ │ ├── listtasks.cpp │ │ ├── listtasks.h │ │ ├── listusers.cpp │ │ ├── listusers.h │ │ ├── listwork.cpp │ │ ├── listwork.h │ │ ├── main.cpp │ │ ├── modelitems.cpp │ │ ├── modelitems.h │ │ ├── modelnodes.cpp │ │ ├── modelnodes.h │ │ ├── monitorhost.cpp │ │ ├── monitorhost.h │ │ ├── numberwidget.cpp │ │ ├── numberwidget.h │ │ ├── offlinescreen.cpp │ │ ├── offlinescreen.h │ │ ├── param.cpp │ │ ├── param.h │ │ ├── paramspanel.cpp │ │ ├── paramspanel.h │ │ ├── paramspanelfarm.cpp │ │ ├── paramspanelfarm.h │ │ ├── paramspaneljob.cpp │ │ ├── paramspaneljob.h │ │ ├── paramspaneltask.cpp │ │ ├── paramspaneltask.h │ │ ├── plotter.cpp │ │ ├── plotter.h │ │ ├── popup.cpp │ │ ├── popup.h │ │ ├── qaftextwidget.cpp │ │ ├── qaftextwidget.h │ │ ├── receiver.cpp │ │ ├── receiver.h │ │ ├── viewitems.cpp │ │ ├── viewitems.h │ │ ├── watch.cpp │ │ ├── watch.h │ │ ├── wnd.cpp │ │ ├── wnd.h │ │ ├── wndcustomdata.cpp │ │ ├── wndcustomdata.h │ │ ├── wndcustomizegui.cpp │ │ ├── wndcustomizegui.h │ │ ├── wndlist.cpp │ │ ├── wndlist.h │ │ ├── wndlistenjob.cpp │ │ ├── wndlistenjob.h │ │ ├── wndlistentask.cpp │ │ ├── wndlistentask.h │ │ ├── wndnotifications.cpp │ │ ├── wndnotifications.h │ │ ├── wndtask.cpp │ │ ├── wndtask.h │ │ ├── wndtext.cpp │ │ └── wndtext.h └── statistics │ ├── afstatsrv.py │ ├── favicon.ico │ ├── general.js │ ├── images │ ├── afanasy.png │ ├── back.jpg │ ├── footer.png │ ├── footer_center.png │ ├── footer_left.png │ ├── footer_right.png │ ├── header.png │ ├── header_left.png │ ├── header_right.png │ ├── star01.png │ └── star02.png │ ├── index.html │ ├── server.php │ ├── styles.css │ └── test.py ├── afanasy_logo.svg ├── bin ├── .gitignore ├── deletefiles ├── deletefiles.cmd ├── documentation ├── documentation.cmd ├── emailsend ├── emailsend.cmd ├── forum ├── forum.cmd ├── movconvert ├── movconvert.cmd ├── openfolder ├── openterminal ├── python ├── python.cmd ├── rules ├── rules.cmd ├── wolsleep ├── wolsleep.cmd ├── wolwake └── wolwake.cmd ├── cgru_logo.svg ├── config_default.json ├── docs ├── .gitignore ├── Makefile ├── _static │ └── favicon.ico ├── about │ └── about.rst ├── afanasy │ ├── afanasy.rst │ ├── afcmd.rst │ ├── api.rst │ ├── branch.rst │ ├── images │ │ ├── afwatch_farm.png │ │ ├── afwatch_farm_services_tickets.png │ │ ├── afwatch_jobs.png │ │ ├── afwatch_style_dark.png │ │ ├── afwatch_style_hello_kitty.png │ │ ├── afwatch_style_hello_kitty_hell.png │ │ ├── afwatch_style_light.png │ │ ├── afwatch_style_military.png │ │ ├── afwatch_tickets_jobs.png │ │ ├── afwatch_users.png │ │ ├── afwatch_work.png │ │ ├── custom_resouces_nvidia_message.png │ │ ├── custom_resouces_nvidia_plot.png │ │ ├── doom2.jpg │ │ ├── stat_tasks.png │ │ ├── sysjob_job.png │ │ ├── sysjob_render.png │ │ ├── sysjob_tasks.png │ │ ├── sysjob_user.png │ │ └── webgui_farm.png │ ├── job.rst │ ├── job_block.rst │ ├── job_task.rst │ ├── pools.rst │ ├── render.rst │ ├── server.rst │ ├── tickets.rst │ ├── user.rst │ ├── watch.rst │ └── webgui.rst ├── afstarter │ ├── afstarter.rst │ ├── dialog_job.png │ └── dialog_scene.png ├── changes_log │ └── changes_log.rst ├── coding_rules │ └── coding_rules.rst ├── conf.py ├── configuration │ └── configuration.rst ├── contacts │ ├── contacts.rst │ └── dr.strangelove.gif ├── downloads │ └── downloads.rst ├── examples │ └── examples.rst ├── fun │ ├── index.rst │ ├── nimby_1.jpg │ ├── nimby_2.jpg │ ├── nimby_3.jpg │ ├── nimby_4.jpg │ ├── nimby_5.jpg │ ├── nimby_terminator_1.jpg │ ├── nimby_terminator_2.jpg │ ├── producers.svg │ └── shashlik.jpg ├── howto │ ├── appendtask │ │ └── index.rst │ └── index.rst ├── index.rst ├── installation │ └── installation.rst ├── keeper │ ├── keeper.rst │ ├── linux_menu.png │ ├── tray_menu_afanasy.png │ └── tray_menu_software.png ├── license │ └── license.rst ├── regexp │ ├── regexp.rst │ └── regexp_checker.png ├── requirements.txt ├── rules │ ├── images │ │ └── rules_scene.png │ └── rules.rst └── software │ ├── afterfx.rst │ ├── blender.rst │ ├── cinema4d.rst │ ├── clarisse.rst │ ├── fusion.rst │ ├── houdini.rst │ ├── images │ ├── afterfx_afwatch_job.png │ ├── afterfx_dialog_general.png │ ├── afterfx_dialog_movie.png │ ├── afterfx_scripts_menu.png │ ├── blender_afanasy_properties.png │ ├── blender_preferences.png │ ├── blender_webgui_job.png │ ├── blender_webgui_tasks.png │ ├── cinema4d_dialog_masks.png │ ├── cinema4d_dialog_sheduling.png │ ├── cinema4d_dialog_submission.png │ ├── clarisse_add_shelf_item.png │ ├── clarisse_afwatch_job.png │ ├── clarisse_dialog_a.png │ ├── clarisse_dialog_b.png │ ├── clarisse_dialog_c.png │ ├── clarisse_webgui_job.png │ ├── fusion_dialog.png │ ├── fusion_main_menu.png │ ├── fusion_webgui_job.png │ ├── houdini_afrop_command.png │ ├── houdini_afrop_distributed.png │ ├── houdini_afrop_environment.png │ ├── houdini_afrop_general.png │ ├── houdini_afrop_parameters.png │ ├── houdini_afrop_separate.png │ ├── houdini_afrop_soho.png │ ├── houdini_command_job.png │ ├── houdini_command_network.png │ ├── houdini_command_tasks.png │ ├── houdini_complex_job.png │ ├── houdini_complex_network.png │ ├── houdini_distribpyro_afdistrib.png │ ├── houdini_distribpyro_afgeneral.png │ ├── houdini_distribpyro_dop_adjust.png │ ├── houdini_distribpyro_dop_orig.png │ ├── houdini_distribpyro_job_done.png │ ├── houdini_distribpyro_job_running.png │ ├── houdini_distribpyro_job_stopping.png │ ├── houdini_distribpyro_outputs.png │ ├── houdini_distribpyro_tasks.png │ ├── houdini_pdg_adjustment.png │ ├── houdini_pdg_cooking1.png │ ├── houdini_pdg_cooking2.png │ ├── houdini_pdg_edit_parameter_interface.png │ ├── houdini_pdg_job1.png │ ├── houdini_pdg_job2.png │ ├── houdini_pdg_job3.png │ ├── houdini_pdg_parameters.png │ ├── houdini_pdg_scheduler.png │ ├── houdini_simple_job.png │ ├── houdini_simple_network.png │ ├── houdini_simple_tasks.png │ ├── houdini_subtask_job.png │ ├── houdini_subtask_network.png │ ├── houdini_subtask_tasks.png │ ├── houdini_tilerender_job.png │ ├── houdini_tilerender_network.png │ ├── houdini_tilerender_tasks.png │ ├── max_afwatch_job.png │ ├── max_submission.png │ ├── maya_dialog.png │ ├── natron_afanasy_general.png │ ├── natron_afanasy_multiwrite.png │ ├── natron_afanasy_scheduling.png │ ├── natron_complex_job.png │ ├── natron_complex_network.png │ ├── natron_node_graph.png │ ├── natron_render_selected_dialog.png │ ├── natron_webgui_job.png │ ├── nuke_afanasy_advanced.png │ ├── nuke_afanasy_environment.png │ ├── nuke_afanasy_general.png │ ├── nuke_afanasy_multiwrite.png │ ├── nuke_afanasy_parameters.png │ ├── nuke_cgru_menu.png │ ├── nuke_complex_job.png │ ├── nuke_complex_network.png │ ├── nuke_render_selected_1.png │ ├── nuke_render_selected_2.png │ ├── nuke_simple_job.png │ ├── nuke_simple_network.png │ ├── xsi_afwatch_jobs.png │ ├── xsi_afwatch_varirender.png │ ├── xsi_afwindow_scheduling.png │ ├── xsi_afwindow_submission.png │ └── xsi_afwindow_varirender.png │ ├── lightwave.rst │ ├── max.rst │ ├── maya.rst │ ├── natron.rst │ ├── nuke.rst │ ├── softimage.rst │ └── software.rst ├── examples ├── 3D Studio Max │ ├── clear.cmd │ ├── render.py │ ├── render_afjob.cmd │ ├── render_command.cmd │ ├── render_script.cmd │ ├── scene.max │ └── start_3dsmax.cmd ├── After FX │ ├── clear.cmd │ ├── comp.aep │ ├── render.py │ ├── render_afjob.cmd │ ├── render_command.cmd │ └── render_script.cmd ├── Cinema 4D │ ├── clear.cmd │ ├── scene 1.c4d │ └── start_c4d.cmd ├── Fusion │ ├── Composition1.comp │ ├── afjob.cmd │ ├── command.cmd │ ├── command.sh │ └── start_fusion.cmd ├── blender │ ├── .gitignore │ ├── clear.cmd │ ├── clear.sh │ ├── render.py │ ├── render_command.sh │ ├── render_script.sh │ ├── scene.blend │ ├── start_blender.cmd │ └── start_blender.sh ├── clarisse │ ├── afjob.cmd │ ├── afjob.sh │ ├── archive.render │ ├── clear.cmd │ ├── clear.sh │ ├── command.cmd │ ├── command.sh │ ├── scene.project │ ├── start_clarisse.cmd │ └── start_clarisse.sh ├── clear.cmd ├── clear.sh ├── docker │ ├── README.md │ └── docker-compose.yml ├── houdini │ ├── .gitignore │ ├── clear.cmd │ ├── clear.sh │ ├── distrib_pyro.hip │ ├── parse.cmd │ ├── pdg.hip │ ├── render.cmd │ ├── render.py │ ├── render.sh │ ├── scene.hip │ ├── start_houdini.cmd │ ├── start_houdini.sh │ └── tile_render.py ├── json │ ├── action_jobs.json │ ├── action_jobs_params.json │ ├── action_pools.json │ ├── action_renders.json │ ├── announce.json │ ├── get_branches.json │ ├── get_config.json │ ├── get_files.json │ ├── get_job_blocks.json │ ├── get_job_errorhosts.json │ ├── get_job_log.json │ ├── get_job_progress.json │ ├── get_job_task_files.json │ ├── get_jobs.json │ ├── get_pools.json │ ├── get_renders.json │ ├── get_renders_resources.json │ ├── get_users.json │ ├── job_maximum.json │ ├── job_minimum.json │ ├── monitor_announce.json │ ├── monitor_getevets.json │ ├── monitor_jobs.json │ ├── monitor_message.json │ ├── monitor_register.json │ ├── monitor_renders.json │ ├── monitor_tasks.json │ ├── reload_config.json │ ├── save_object.json │ └── user_add.json ├── maya │ ├── clear.cmd │ ├── clear.sh │ ├── render.cmd │ ├── render.py │ ├── render.sh │ ├── scene.mb │ ├── start_maya.cmd │ ├── start_maya.sh │ └── workspace.mel ├── natron │ ├── afjob.sh │ ├── clear.cmd │ ├── clear.sh │ ├── command.sh │ ├── job.py │ ├── scene.ntp │ ├── scene_complex.ntp │ ├── script.py │ ├── start_natron.cmd │ └── start_natron.sh ├── nuke │ ├── clear.cmd │ ├── clear.sh │ ├── encode.sh │ ├── parse.cmd │ ├── render.cmd │ ├── render.py │ ├── render.sh │ ├── scene.nk │ ├── scene_stereo.nk │ ├── start_nuke.cmd │ └── start_nuke.sh ├── softimage │ ├── clear.cmd │ ├── parse.cmd │ ├── project │ │ ├── Scenes │ │ │ └── scene.scn │ │ └── system │ │ │ └── dsprojectinfo │ ├── render.cmd │ └── start_softimage.cmd └── test scripts │ ├── Renders.sh │ ├── clear.cmd │ ├── clear.sh │ ├── demo │ ├── demo.sh │ ├── emulate.py │ ├── emulate.sh │ ├── emulate_renders.py │ ├── emulate_renders.sh │ ├── hardcore.sh │ └── utf8rus.sh │ ├── example.py │ ├── job.cmd │ ├── job.py │ ├── job.sh │ ├── job_with_thumbnails.cmd │ ├── mac │ └── Library │ │ └── StartupItems │ │ ├── afanasy │ │ ├── StartupParameters.plist │ │ └── afanasy │ │ ├── afrender │ │ ├── StartupParameters.plist │ │ └── afrender │ │ └── cg │ │ ├── StartupParameters.plist │ │ └── cg │ ├── multihost.sh │ ├── setup.sh │ ├── setup_pgsql.sh │ ├── subtask.py │ └── task.py ├── favicon.ico ├── htaccess_example ├── icons ├── .gitignore ├── afanasy.png ├── afanasy.svg ├── afwatch.png ├── afwatch.svg ├── cgru-devel.png ├── cgru-devel.svg ├── cgruicon.svg ├── cgrumenuitem.svg ├── configure.png ├── dailies.png ├── dailies.svg ├── documentation.png ├── folder.png ├── forum.png ├── info.png ├── keeper.png ├── keeper.svg ├── make.sh ├── moviemaker.png ├── regexp.png ├── regexp.svg ├── scanscan.png ├── scanscan.svg ├── software │ ├── 3dsmax.png │ ├── afterfx.png │ ├── arch.png │ ├── arnold.png │ ├── blender.png │ ├── blender_internal.png │ ├── blender_yafray.png │ ├── c4d.png │ ├── checksum.png │ ├── clarisse.png │ ├── events.png │ ├── ffmpeg.png │ ├── ftp.png │ ├── ftrack.png │ ├── fusion.png │ ├── generic.png │ ├── hbatch.png │ ├── hbatch_karma.png │ ├── hbatch_mantra.png │ ├── hbatch_pdg.png │ ├── hbatch_prman.png │ ├── hbatch_redshift.png │ ├── houdini.png │ ├── houdinitoarnold.png │ ├── htracker.png │ ├── karma.png │ ├── lightwave.png │ ├── mantra.png │ ├── max.png │ ├── maya.png │ ├── maya_arnold.png │ ├── maya_mental.png │ ├── maya_redshift.png │ ├── maya_vray.png │ ├── mayatoarnold.png │ ├── mayatomr.png │ ├── mayatovray.png │ ├── mentalray.png │ ├── movgen.png │ ├── natron.png │ ├── nuke.png │ ├── nukex.png │ ├── postcmd.png │ ├── prman.png │ ├── put.png │ ├── shake.png │ ├── shotgun.png │ ├── softimage.png │ ├── system.png │ ├── test.png │ ├── tiles_stitch.png │ ├── vray.png │ ├── wakeonlan.png │ ├── walk.png │ ├── xsi.png │ ├── xsi_arnold.png │ ├── xsi_arnold_watermarked.png │ ├── xsi_redshift.png │ └── yafray.png ├── terminal.png ├── tickets │ ├── GPU.png │ ├── HYTHON.png │ ├── KARMA.png │ ├── MANTRA.png │ ├── MEM.png │ ├── NET.png │ ├── NUKE.png │ ├── PDG.png │ └── REDSHIFT.png └── tools.png ├── index.html ├── lib ├── icons │ ├── delete.png │ └── open.png ├── js │ ├── cgru.js │ └── md5.js ├── python │ ├── Qt.py │ ├── cgruTempFolder.py │ ├── cgruconfig.py │ ├── cgrudocs.py │ ├── cgrules.py │ ├── cgrupathmap.py │ ├── cgrusequence.py │ ├── cgruutils.py │ ├── filelock.py │ └── mediainfo.py └── styles.css ├── player.html ├── plugins ├── afterfx │ └── Afanasy.jsx ├── blender │ └── addons │ │ └── cgru_tools │ │ ├── __init__.py │ │ ├── addon_prefs.py │ │ ├── operators.py │ │ ├── properties.py │ │ ├── ui.py │ │ └── utils.py ├── c4d │ ├── python_init.py │ ├── render.py │ └── scripts │ │ └── python │ │ ├── FromCinema2Nuke.pyp │ │ └── RenderOnFarm.pyp ├── clarisse │ └── afanasy_submit.py ├── fusion │ ├── .gitignore │ ├── Comp │ │ └── Afanasy.py │ └── makeprefs.py ├── houdini │ ├── SQP_3dcoat │ │ ├── src │ │ │ ├── Doxyfile │ │ │ ├── Makefile │ │ │ ├── SOP_3dcoat.c │ │ │ ├── SOP_3dcoat.h │ │ │ └── moxy.py │ │ └── start.hip │ ├── afanasy.py │ ├── afanasy_soho.py │ ├── hrender_af.py │ ├── hrender_separate.py │ ├── htracker.py │ ├── otls │ │ ├── afanasy.hda │ │ └── afanasyscheduler.hda │ ├── pdg │ │ └── types │ │ │ └── afanasyscheduler.py │ └── topscheduler.user.ds ├── lightwave │ ├── afanasy_submitter.py │ └── lwsn.bat ├── max │ ├── afanasy.mcr │ └── startup.ms ├── maya │ ├── .gitignore │ ├── afanasy │ │ ├── __init__.py │ │ ├── afanasyRenderJob.py │ │ ├── maya_ui_proc.py │ │ ├── meArnoldRender.py │ │ ├── meCheckTexturePaths.py │ │ ├── meMentalRayRender.py │ │ ├── meVRayRender.py │ │ └── renderJob.py │ ├── cgru.mel │ ├── icons │ │ ├── render_grade_tm.bmp │ │ └── render_grade_tm.xpm │ ├── installation_maya.html │ ├── maya.cmd │ ├── maya.sh │ ├── mel │ │ ├── AETemplates │ │ │ └── AEtm_makeHgeoTemplate.mel │ │ ├── animation │ │ │ ├── khar_flatdag.mel │ │ │ ├── tima_advframectrl.mel │ │ │ ├── tima_advplayblast.mel │ │ │ ├── tima_hexportcam.mel │ │ │ └── zl_exportOBJ.mel │ │ ├── cgrumenu.mel │ │ ├── defaulthotkeyslist.mel │ │ ├── develop │ │ │ ├── tima_attributeeditor.mel │ │ │ └── tima_scriptjobmgr.mel │ │ ├── hotkeys │ │ │ ├── cmd_animation.mel │ │ │ ├── cmd_cameraview.mel │ │ │ ├── cmd_miscellaneous.mel │ │ │ ├── cmd_modeling.mel │ │ │ ├── cmd_rendering.mel │ │ │ └── cmd_windowsui.mel │ │ ├── interface │ │ │ ├── tima_channelslayerswindow.mel │ │ │ ├── tima_channelswindow.mel │ │ │ └── tima_layerswindow.mel │ │ ├── markingmenus │ │ │ ├── generalmm.mel │ │ │ ├── tima_animtoolsmm.mel │ │ │ ├── tima_camerasmm.mel │ │ │ ├── tima_duplicatemm.mel │ │ │ └── tima_polytoolsmm.mel │ │ ├── menuitems_animation.mel │ │ ├── menuitems_develop.mel │ │ ├── menuitems_documentation.mel │ │ ├── menuitems_interface.mel │ │ ├── menuitems_miscellaneous.mel │ │ ├── menuitems_modeling.mel │ │ ├── menuitems_reload.mel │ │ ├── menuitems_rendering.mel │ │ ├── miscellaneous │ │ │ ├── bazh_rivet.mel │ │ │ ├── tima_camzoompanmouse.mel │ │ │ ├── tima_massrename.mel │ │ │ ├── tima_randchannels.mel │ │ │ └── tima_setseditor.mel │ │ ├── modeling │ │ │ ├── tima_instance.mel │ │ │ ├── tima_makegeoshphere.mel │ │ │ ├── tima_mirrorsubd.mel │ │ │ ├── tima_polysplit.mel │ │ │ ├── tima_polytools.mel │ │ │ ├── tima_polytransfer.mel │ │ │ ├── tima_randpoint.mel │ │ │ ├── tima_removemtorsubdattrs.mel │ │ │ ├── tima_rockgenerator.mel │ │ │ ├── tima_unfreezetranslation.mel │ │ │ └── tima_volumeDeformer.mel │ │ └── rendering │ │ │ ├── tima_lightlinksg.mel │ │ │ ├── tima_lightsmanager.mel │ │ │ └── tima_renderingflags.mel │ └── src │ │ ├── .gitignore │ │ ├── build_cgru_plugin.cmd │ │ ├── build_cgru_plugin.sh │ │ ├── cgru_plugin.mxw.rb │ │ ├── cgru_plugin.mxx.rb │ │ ├── cgru_plugin.sln │ │ ├── cgru_plugin.vcproj │ │ ├── cgru_plugin.vcxproj │ │ ├── mac_build.sh │ │ └── src │ │ ├── cgru_plugin.cpp │ │ ├── commands │ │ ├── clearOutput.cpp │ │ ├── clearOutput.h │ │ ├── command.cpp │ │ ├── command.h │ │ ├── killNode.cpp │ │ ├── killNode.h │ │ ├── polygon │ │ │ ├── polyExtract.cpp │ │ │ ├── polyExtract.h │ │ │ ├── polyModPrep.cpp │ │ │ ├── polyModPrep.h │ │ │ ├── polySelect.cpp │ │ │ ├── polySelect.h │ │ │ ├── polygon.cpp │ │ │ ├── polygon.h │ │ │ ├── polygon_etl.cpp │ │ │ ├── polygon_etr.cpp │ │ │ ├── polygon_fp.cpp │ │ │ └── polygon_rtw.cpp │ │ ├── randPoint.cpp │ │ ├── randPoint.h │ │ ├── reparent.cpp │ │ ├── reparent.h │ │ ├── view.cpp │ │ └── view.h │ │ ├── definitions.h │ │ ├── nodes │ │ ├── geoSphere.cpp │ │ ├── geoSphere.h │ │ ├── kxb.cpp │ │ ├── kxb.h │ │ ├── kxbci.cpp │ │ ├── kxbci.h │ │ ├── makehgeo.cpp │ │ ├── makehgeo.h │ │ ├── noiseNode.cpp │ │ ├── noiseNode.h │ │ ├── polygon │ │ │ ├── polyModifierCmd.cpp │ │ │ ├── polyModifierCmd.h │ │ │ ├── polyModifierFty.cpp │ │ │ ├── polyModifierFty.h │ │ │ ├── polyModifierNode.cpp │ │ │ ├── polyModifierNode.h │ │ │ ├── polyslot │ │ │ │ ├── polySlotCmd.cpp │ │ │ │ ├── polySlotCmd.h │ │ │ │ ├── polySlotFty.cpp │ │ │ │ ├── polySlotFty.h │ │ │ │ ├── polySlotFtyAction.cpp │ │ │ │ ├── polySlotManip.cpp │ │ │ │ ├── polySlotManip.h │ │ │ │ ├── polySlotNode.cpp │ │ │ │ └── polySlotNode.h │ │ │ ├── polysplit │ │ │ │ ├── polySplitCmd.cpp │ │ │ │ ├── polySplitCmd.h │ │ │ │ ├── polySplitFty.cpp │ │ │ │ ├── polySplitFty.h │ │ │ │ ├── polySplitFtyAction.cpp │ │ │ │ ├── polySplitLoopSel.cpp │ │ │ │ ├── polySplitLoopSel.h │ │ │ │ ├── polySplitManip.cpp │ │ │ │ ├── polySplitManip.h │ │ │ │ ├── polySplitNode.cpp │ │ │ │ └── polySplitNode.h │ │ │ ├── transformUV.cpp │ │ │ └── transformUV.h │ │ ├── randomDeformer.cpp │ │ ├── randomDeformer.h │ │ ├── shading │ │ │ ├── grade.cpp │ │ │ └── grade.h │ │ ├── volumeDeformer.cpp │ │ ├── volumeDeformer.h │ │ ├── volumeDeformerManip.cpp │ │ └── volumeDeformerManip.h │ │ └── utilities │ │ ├── INoise.cpp │ │ ├── INoise.h │ │ ├── noises.cpp_ │ │ ├── polygon_edgestoring.cpp │ │ ├── polygon_edgestoring.h │ │ ├── polygon_selectloop.cpp │ │ ├── polygon_selectloop.h │ │ ├── polygon_selectring.cpp │ │ ├── polygon_selectring.h │ │ ├── utilities.cpp │ │ └── utilities.h ├── natron │ ├── afanasy.py │ ├── afanasyGroup.py │ ├── init.py │ └── initGui.py ├── nuke │ ├── _template.nk │ ├── encode.nk │ ├── encode.py │ ├── gizmos │ │ ├── afanasy.gizmo │ │ └── cgru_dailies.gizmo │ ├── init.py │ ├── render.py │ ├── scripts │ │ ├── cgru │ │ │ ├── __init__.py │ │ │ ├── afanasy.py │ │ │ ├── dailies.py │ │ │ ├── pathcurdir.py │ │ │ ├── pathmap.py │ │ │ └── rules.py │ │ ├── init.py │ │ └── menu.py │ └── view.py └── xsi │ ├── afplugin.py │ ├── afrender.py │ ├── afxsisubmit.py │ └── afxsisubmit_logic.py ├── rules.php ├── rules ├── .gitignore ├── assets │ ├── forum.html │ ├── forum.js │ ├── project.html │ ├── project.js │ ├── scenes.html │ ├── scenes.js │ ├── shot.html │ ├── shot.js │ ├── templates │ │ ├── project │ │ │ ├── .rules │ │ │ │ └── body.html │ │ │ ├── DOC │ │ │ │ └── .rules │ │ │ │ │ └── body.html │ │ │ ├── IN │ │ │ │ └── .rules │ │ │ │ │ └── body.html │ │ │ ├── OUT │ │ │ │ └── .rules │ │ │ │ │ └── body.html │ │ │ └── SHOTS │ │ │ │ └── .rules │ │ │ │ └── body.html │ │ ├── scene │ │ │ └── .rules │ │ │ │ └── body.html │ │ └── shot │ │ │ ├── REF │ │ │ └── .rules │ │ │ │ └── body.html │ │ │ ├── RESULT │ │ │ └── .rules │ │ │ │ └── body.html │ │ │ ├── SRC │ │ │ └── .rules │ │ │ │ └── body.html │ │ │ └── WORK │ │ │ └── .rules │ │ │ └── body.html │ └── tmpfio │ │ ├── .htaccess │ │ └── .rules │ │ └── body.html ├── backup_users.sh ├── bin │ ├── convert │ ├── convert.py │ ├── convert.sh │ ├── deploy_shots.py │ ├── deploy_shots.sh │ ├── ffmpeg │ ├── ffprobe │ ├── find_results.py │ ├── makecut.sh │ ├── move.py │ ├── shot_open_latest │ ├── shot_open_latest.py │ ├── shot_process │ ├── shot_process.py │ ├── thumbnail.py │ ├── thumbnail.sh │ ├── walk.py │ └── walk.sh ├── icons │ ├── annotate.png │ ├── archive.png │ ├── arrow_down.png │ ├── arrow_up.png │ ├── audio.png │ ├── bell.png │ ├── bookmark.png │ ├── buffer_add.png │ ├── buffer_take.png │ ├── comment_add.png │ ├── convert.png │ ├── convert.sh │ ├── count.png │ ├── crop.png │ ├── cut.png │ ├── dailies.png │ ├── decrease.png │ ├── delete.png │ ├── delete_all.png │ ├── delete_hidden.png │ ├── delete_visible.png │ ├── edit.png │ ├── favourite.png │ ├── file_archive.png │ ├── file_folder.png │ ├── file_icon.png │ ├── file_image.png │ ├── file_movie.png │ ├── folder_new.png │ ├── hide.png │ ├── increase.png │ ├── info.png │ ├── link.png │ ├── listen_own.png │ ├── megaphone.png │ ├── menu.png │ ├── move_bottom.png │ ├── move_down.png │ ├── move_top.png │ ├── move_up.png │ ├── news_channels.png │ ├── next.png │ ├── play.png │ ├── player.png │ ├── plus_down.png │ ├── plus_up.png │ ├── power_button.png │ ├── previous.png │ ├── put.png │ ├── refresh.png │ ├── rename.png │ ├── rules.png │ ├── select.png │ ├── select_all.png │ ├── select_invert.png │ ├── sort_order_toggle.png │ ├── table.png │ ├── thumbnails.png │ ├── tmpfio.png │ ├── top.png │ ├── up.png │ └── walk.png ├── js │ ├── activity.js │ ├── admin.js │ ├── artbook.js │ ├── asset.js │ ├── bookmarks.js │ ├── comments.js │ ├── common.js │ ├── dailies.js │ ├── editcontent.js │ ├── editlist.js │ ├── filesutils.js │ ├── filesview.js │ ├── general.js │ ├── gui.js │ ├── network.js │ ├── news.js │ ├── player.js │ ├── playlist.js │ ├── profile.js │ ├── search.js │ ├── statistics.js │ ├── status.js │ ├── table.js │ ├── task.js │ ├── ui.js │ └── upload.js ├── player.css ├── rules.00_general.json ├── rulib │ ├── __init__.py │ ├── comments.py │ ├── editobj.py │ ├── functions.py │ ├── news.py │ ├── playlist.py │ ├── search.py │ └── status.py ├── rusrv │ ├── __init__.py │ ├── admin.py │ ├── afanasy.py │ ├── environ.py │ ├── requests.py │ └── session.py ├── styles.css └── wsgi.py ├── rules_root ├── .gitignore ├── .rules │ ├── body.html │ └── rules.site.json ├── Ask_Questions_Here │ ├── .rules │ │ ├── body.html │ │ └── rules_questions.json │ └── AFANASY │ │ └── .rules │ │ ├── body.html │ │ └── rules_forum.json └── CG_PROJECT │ ├── .gitignore │ ├── .rules │ └── body.html │ ├── SCENES │ ├── .gitignore │ ├── .rules │ │ └── body.html │ └── A_SCENE │ │ ├── .rules │ │ ├── body.html │ │ ├── rules.dailies.json │ │ └── rules.demo.json │ │ ├── A_SHOT_01 │ │ ├── .rules │ │ │ └── body.html │ │ └── scripts │ │ │ └── A_SHOT_01.nk │ │ ├── A_SHOT_02 │ │ ├── .rules │ │ │ └── body.html │ │ └── scripts │ │ │ └── A_SHOT_02.nk │ │ └── _readme_ │ │ └── .rules │ │ └── body.html │ └── references │ ├── .gitignore │ └── .rules │ └── body.html ├── setup.cmd ├── setup.sh ├── setup_README.cmd ├── setup_README.sh ├── setup_afanasy.cmd ├── setup_afanasy.sh ├── setup_python.cmd ├── setup_python.sh ├── software_setup ├── .gitignore ├── bin │ ├── 3dsmax.cmd │ ├── 3dsmaxcmd.cmd │ ├── aerender │ ├── aerender.cmd │ ├── afterfx │ ├── afterfx.cmd │ ├── blender │ ├── blender.cmd │ ├── c4d │ ├── c4d.cmd │ ├── c4drender │ ├── c4drender.cmd │ ├── clarisse │ ├── clarisse.cmd │ ├── clarisse_node │ ├── clarisse_node.cmd │ ├── fusion │ ├── fusion.cmd │ ├── fusion_render_node │ ├── houdini │ ├── houdini.cmd │ ├── hrender_af │ ├── hrender_af.cmd │ ├── hrender_separate │ ├── hrender_separate.cmd │ ├── htracker │ ├── htracker.cmd │ ├── husk │ ├── husk.cmd │ ├── hython │ ├── hython.cmd │ ├── itilestitch │ ├── lightwave.cmd │ ├── lwsn_af.cmd │ ├── mantra │ ├── mantra.cmd │ ├── maya │ ├── maya.cmd │ ├── mayapy │ ├── mayapy.cmd │ ├── mayarender │ ├── mayarender.cmd │ ├── mplay │ ├── mplay.cmd │ ├── natron │ ├── natron.cmd │ ├── nuke │ ├── nuke.cmd │ ├── xsi.cmd │ └── xsibatch.cmd ├── setup_3dsmax.cmd ├── setup__all.cmd ├── setup__all.sh ├── setup_afterfx.cmd ├── setup_afterfx.sh ├── setup_blender.cmd ├── setup_blender.sh ├── setup_c4d.cmd ├── setup_c4d.sh ├── setup_clarisse.cmd ├── setup_clarisse.sh ├── setup_fusion.cmd ├── setup_fusion.sh ├── setup_houdini.cmd ├── setup_houdini.sh ├── setup_lightwave.cmd ├── setup_maya.cmd ├── setup_maya.sh ├── setup_natron.cmd ├── setup_natron.sh ├── setup_nuke.cmd ├── setup_nuke.sh ├── setup_softimage.cmd ├── start_3dsmax.cmd ├── start__all.cmd ├── start__all.sh ├── start_afterfx.cmd ├── start_blender.cmd ├── start_blender.sh ├── start_c4d.cmd ├── start_c4d.sh ├── start_clarisse.cmd ├── start_clarisse.sh ├── start_fusion.cmd ├── start_fusion.sh ├── start_houdini.cmd ├── start_houdini.sh ├── start_lightwave.cmd ├── start_maya.cmd ├── start_maya.sh ├── start_natron.cmd ├── start_natron.sh ├── start_nuke.cmd ├── start_nuke.sh └── start_softimage.cmd ├── start.cmd ├── start.command ├── start.sh ├── start ├── AFANASY │ ├── 10.afwatch.cmd │ ├── 10.afwatch.sh │ ├── 50.afstarter.cmd │ ├── 50.afstarter.sh │ ├── 90.regexp.cmd │ ├── 90.regexp.sh │ ├── 99.render.cmd │ ├── _afcmd.cmd │ ├── _afcmd.sh │ ├── _afrender.sh │ ├── _afserver.cmd │ ├── _afserver.sh │ ├── _setup.cmd │ └── _setup.sh ├── MovieMaker │ ├── _setup.cmd │ ├── _setup.sh │ ├── dailies.cmd │ ├── dailies.sh │ ├── scanscan.cmd │ └── scanscan.sh ├── Tools │ ├── _setup.sh │ ├── browse.cmd │ ├── browse.sh │ ├── terminal.cmd │ └── terminal.sh ├── _setup.cmd └── _setup.sh ├── utilities ├── afstarter │ └── afstarter.py ├── arch.py ├── arch_x.py ├── build.sh ├── check_pathmap.py ├── checksum.py ├── deletefiles.py ├── distribution.sh ├── documentation.py ├── download │ ├── get_7zip.cmd │ ├── get_cmake.cmd │ ├── get_far.cmd │ ├── get_mxxru.cmd │ ├── get_mxxru.sh │ ├── get_notepad.cmd │ ├── get_pyqt.cmd │ ├── get_ruby.cmd │ ├── get_zlib.cmd │ └── mac_getwget.sh ├── emailsend.py ├── ffmpeg │ ├── .gitignore │ ├── build.sh │ ├── build_faac.sh │ ├── build_ffmpeg.sh │ ├── build_lame.sh │ ├── build_nasm.sh │ ├── build_vorbis.sh │ ├── build_x264.sh │ ├── build_yasm.sh │ ├── clear.sh │ ├── get.sh │ ├── get_faac.sh │ ├── get_ffmpeg.sh │ ├── get_lame.sh │ ├── get_nasm.sh │ ├── get_vorbis.sh │ ├── get_x264.sh │ ├── get_yasm.sh │ └── patch_faac.py ├── forum.py ├── get.sh ├── getrevision.cmd ├── getrevision.py ├── getrevision.sh ├── imagemagick │ ├── .gitignore │ ├── build.sh │ ├── clear.sh │ ├── get.cmd │ └── get.sh ├── install_depends_devel.sh ├── keeper │ ├── .gitignore │ ├── cmd.py │ ├── cmdkeeper.py │ ├── cmdkeeper.sh │ ├── info.py │ ├── keeper.py │ ├── nimby.py │ ├── nimby_dialog.py │ ├── refresh.py │ ├── render.py │ ├── sendkeeper.py │ ├── server.py │ ├── serverhttps.html │ ├── serverhttps.py │ ├── software.py │ └── tray.py ├── launchcmd.py ├── maintenance │ ├── codeStyleCheck.php │ └── common.inc.php ├── misc │ ├── copyext.py │ ├── finddub.py │ ├── findsequences.py │ ├── fixpathes.py │ └── renamefolders.py ├── moviemaker │ ├── codecs │ │ ├── copy.ffmpeg │ │ ├── dnxhd115.ffmpeg │ │ ├── dnxhd175.ffmpeg │ │ ├── dnxhd185.ffmpeg │ │ ├── dnxhd36.ffmpeg │ │ ├── h264_bad.ffmpeg │ │ ├── h264_best.ffmpeg │ │ ├── h264_good.ffmpeg │ │ ├── h264_high.ffmpeg │ │ ├── h264_low.ffmpeg │ │ ├── h264_mid.ffmpeg │ │ ├── photojpg_best.ffmpeg │ │ ├── photojpg_copy.ffmpeg │ │ ├── photojpg_high.ffmpeg │ │ ├── photojpg_low.ffmpeg │ │ ├── photojpg_mid.ffmpeg │ │ ├── prores422.ffmpeg │ │ ├── prores444.ffmpeg │ │ ├── rawvideo_uyvy422.ffmpeg │ │ ├── scene.nuke │ │ ├── theora_high.ffmpeg │ │ ├── theora_low.ffmpeg │ │ ├── theora_mid.ffmpeg │ │ ├── xvid_best.mencoder │ │ ├── xvid_hi.mencoder │ │ ├── xvid_low.mencoder │ │ └── xvid_mid.mencoder │ ├── dialog.py │ ├── formats │ │ ├── 1k_16x9 │ │ ├── 1k_4x3 │ │ ├── 2k_16x9 │ │ ├── 2k_4x3 │ │ ├── hd_1080 │ │ ├── hd_720 │ │ ├── hd_960 │ │ ├── pal │ │ ├── pal_square │ │ ├── pc_640x480 │ │ └── pc_800x600 │ ├── logos │ │ └── logo.png │ ├── makecut.py │ ├── makeframe.py │ ├── makemovie.py │ ├── movconvert.py │ ├── scandialog.py │ ├── scanscan.py │ └── templates │ │ ├── dailies │ │ ├── dailies_slate │ │ ├── dailies_withlogo │ │ └── scandpx ├── openexr │ ├── .gitignore │ ├── build.sh │ ├── build_ilmbase.sh │ ├── build_openexr.sh │ ├── clear.sh │ ├── get.cmd │ └── get.sh ├── put.py ├── python │ ├── .gitignore │ ├── build_pyqt.sh │ ├── build_python.sh │ ├── build_sip.sh │ ├── get_pyqt.sh │ ├── get_python.cmd │ ├── get_python.sh │ └── get_sip.sh ├── qt │ ├── .gitignore │ ├── build.cmd │ ├── build.sh │ ├── get.cmd │ └── get.sh ├── regexp │ └── regexp.py ├── release │ ├── .gitignore │ ├── archives │ │ ├── .gitignore │ │ ├── linux.sh │ │ └── windows.sh │ ├── cgru_export.cmd │ ├── cgru_export.sh │ ├── check.sh │ ├── clear.sh │ ├── depends.sh │ ├── docker │ │ ├── afcommon │ │ │ ├── Dockerfile.2.1.0-ubuntu1404 │ │ │ ├── Dockerfile.2.1.0-ubuntu1604 │ │ │ ├── Dockerfile.2.2.3-ubuntu1404 │ │ │ ├── Dockerfile.2.2.3-ubuntu1604 │ │ │ ├── Dockerfile.2.3.1 │ │ │ ├── README.md │ │ │ └── resources │ │ │ │ └── docker-entrypoint.sh │ │ ├── afrender │ │ │ ├── Dockerfile.2.1.0-ubuntu1404 │ │ │ ├── Dockerfile.2.1.0-ubuntu1604 │ │ │ ├── Dockerfile.2.2.3-ubuntu1404 │ │ │ ├── Dockerfile.2.2.3-ubuntu1604 │ │ │ ├── Dockerfile.2.3.1 │ │ │ ├── README.md │ │ │ └── resources │ │ │ │ └── docker-entrypoint-afrender.sh │ │ ├── afserver │ │ │ ├── Dockerfile.2.1.0-ubuntu1404 │ │ │ ├── Dockerfile.2.1.0-ubuntu1604 │ │ │ ├── Dockerfile.2.2.3-ubuntu1404 │ │ │ ├── Dockerfile.2.2.3-ubuntu1604 │ │ │ ├── Dockerfile.2.3.1 │ │ │ └── README.md │ │ ├── afstatistics │ │ │ ├── Dockerfile.2.3.1 │ │ │ └── resources │ │ │ │ ├── 000-afstatistics.conf │ │ │ │ └── afstatistics.sh │ │ ├── rules │ │ │ ├── Dockerfile.2.3.1 │ │ │ └── resources │ │ │ │ ├── 000-rules.conf │ │ │ │ └── apache2-foreground │ │ └── test │ │ │ └── docker-compose.yml │ ├── export.cmd │ ├── export.sh │ ├── export_python.cmd │ ├── install_create.sh │ ├── install_template │ ├── make_archives.sh │ ├── make_linuxpackages.sh │ ├── minimize_python.cmd │ ├── package │ │ ├── cgru-common.sh │ │ ├── cgru-common │ │ │ ├── DEBIAN │ │ │ │ ├── control │ │ │ │ ├── postinst │ │ │ │ └── prerm │ │ │ └── RPM │ │ │ │ └── SPECS │ │ │ │ └── cgru-common.spec │ │ ├── cgru.sh │ │ └── cgru │ │ │ ├── DEBIAN │ │ │ └── control │ │ │ ├── RPM │ │ │ └── SPECS │ │ │ │ └── cgru.spec │ │ │ └── usr │ │ │ └── local │ │ │ └── share │ │ │ └── applications │ │ │ └── cgrukeeper.desktop │ ├── process_icons.sh │ ├── replacevars.sh │ └── svn_export.sh ├── rules.py ├── showdoc.py └── wolwake.py └── version.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.spelling/cgru.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/.spelling/cgru.dic -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/README.md -------------------------------------------------------------------------------- /afanasy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/.gitignore -------------------------------------------------------------------------------- /afanasy/browser/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/COPYING -------------------------------------------------------------------------------- /afanasy/browser/COPYING.lesser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/COPYING.lesser -------------------------------------------------------------------------------- /afanasy/browser/branches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/branches.js -------------------------------------------------------------------------------- /afanasy/browser/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/browser.js -------------------------------------------------------------------------------- /afanasy/browser/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/common.js -------------------------------------------------------------------------------- /afanasy/browser/farm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/farm.js -------------------------------------------------------------------------------- /afanasy/browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/index.html -------------------------------------------------------------------------------- /afanasy/browser/jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/jobs.js -------------------------------------------------------------------------------- /afanasy/browser/listen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/listen.js -------------------------------------------------------------------------------- /afanasy/browser/monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/monitor.js -------------------------------------------------------------------------------- /afanasy/browser/monitors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/monitors.js -------------------------------------------------------------------------------- /afanasy/browser/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/network.js -------------------------------------------------------------------------------- /afanasy/browser/plotter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/plotter.js -------------------------------------------------------------------------------- /afanasy/browser/pools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/pools.js -------------------------------------------------------------------------------- /afanasy/browser/renders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/renders.js -------------------------------------------------------------------------------- /afanasy/browser/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/style.css -------------------------------------------------------------------------------- /afanasy/browser/tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/tasks.js -------------------------------------------------------------------------------- /afanasy/browser/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/users.js -------------------------------------------------------------------------------- /afanasy/browser/window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/window.html -------------------------------------------------------------------------------- /afanasy/browser/wndtask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/wndtask.js -------------------------------------------------------------------------------- /afanasy/browser/work.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/browser/work.js -------------------------------------------------------------------------------- /afanasy/config_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/config_default.json -------------------------------------------------------------------------------- /afanasy/doc/HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/doc/HOWTO.md -------------------------------------------------------------------------------- /afanasy/doc/doxygen/.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | -------------------------------------------------------------------------------- /afanasy/doc/doxygen/afanasy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/doc/doxygen/afanasy -------------------------------------------------------------------------------- /afanasy/doc/doxygen/render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/doc/doxygen/render -------------------------------------------------------------------------------- /afanasy/doc/doxygen/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/doc/doxygen/watch -------------------------------------------------------------------------------- /afanasy/python/af.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/af.py -------------------------------------------------------------------------------- /afanasy/python/afcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/afcmd.py -------------------------------------------------------------------------------- /afanasy/python/afcommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/afcommon.py -------------------------------------------------------------------------------- /afanasy/python/afjob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/afjob.py -------------------------------------------------------------------------------- /afanasy/python/afnetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/afnetwork.py -------------------------------------------------------------------------------- /afanasy/python/afsend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/afsend.py -------------------------------------------------------------------------------- /afanasy/python/check_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/check_parser.py -------------------------------------------------------------------------------- /afanasy/python/parsers/c4d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/parsers/c4d.py -------------------------------------------------------------------------------- /afanasy/python/parsers/curl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/parsers/curl.py -------------------------------------------------------------------------------- /afanasy/python/parsers/karma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/parsers/karma.py -------------------------------------------------------------------------------- /afanasy/python/parsers/max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/parsers/max.py -------------------------------------------------------------------------------- /afanasy/python/parsers/maya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/parsers/maya.py -------------------------------------------------------------------------------- /afanasy/python/parsers/nuke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/parsers/nuke.py -------------------------------------------------------------------------------- /afanasy/python/parsers/prman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/parsers/prman.py -------------------------------------------------------------------------------- /afanasy/python/parsers/rsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/parsers/rsync.py -------------------------------------------------------------------------------- /afanasy/python/parsers/rvio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/parsers/rvio.py -------------------------------------------------------------------------------- /afanasy/python/parsers/vray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/parsers/vray.py -------------------------------------------------------------------------------- /afanasy/python/parsers/xsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/parsers/xsi.py -------------------------------------------------------------------------------- /afanasy/python/resources/__init__.py: -------------------------------------------------------------------------------- 1 | print('Init resources') 2 | -------------------------------------------------------------------------------- /afanasy/python/services/c4d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/services/c4d.py -------------------------------------------------------------------------------- /afanasy/python/services/ftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/services/ftp.py -------------------------------------------------------------------------------- /afanasy/python/services/max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/services/max.py -------------------------------------------------------------------------------- /afanasy/python/services/maya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/services/maya.py -------------------------------------------------------------------------------- /afanasy/python/services/nuke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/services/nuke.py -------------------------------------------------------------------------------- /afanasy/python/services/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/services/test.py -------------------------------------------------------------------------------- /afanasy/python/services/vray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/services/vray.py -------------------------------------------------------------------------------- /afanasy/python/services/walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/services/walk.py -------------------------------------------------------------------------------- /afanasy/python/services/xsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/python/services/xsi.py -------------------------------------------------------------------------------- /afanasy/service/.gitignore: -------------------------------------------------------------------------------- 1 | *-log-* -------------------------------------------------------------------------------- /afanasy/service/afrender_delete.cmd: -------------------------------------------------------------------------------- 1 | sc delete afservice_render 2 | 3 | pause -------------------------------------------------------------------------------- /afanasy/service/afrender_start.cmd: -------------------------------------------------------------------------------- 1 | sc start afservice_render 2 | 3 | pause -------------------------------------------------------------------------------- /afanasy/service/afrender_stop.cmd: -------------------------------------------------------------------------------- 1 | sc stop afservice_render 2 | 3 | pause -------------------------------------------------------------------------------- /afanasy/service/setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/service/setup.cmd -------------------------------------------------------------------------------- /afanasy/setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/setup.cmd -------------------------------------------------------------------------------- /afanasy/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/setup.sh -------------------------------------------------------------------------------- /afanasy/setup_README.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/setup_README.cmd -------------------------------------------------------------------------------- /afanasy/setup_README.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/setup_README.sh -------------------------------------------------------------------------------- /afanasy/setup_cgru.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/setup_cgru.cmd -------------------------------------------------------------------------------- /afanasy/setup_cgru.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/setup_cgru.sh -------------------------------------------------------------------------------- /afanasy/setup_coding.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/setup_coding.cmd -------------------------------------------------------------------------------- /afanasy/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/.gitignore -------------------------------------------------------------------------------- /afanasy/src/cmd/afcmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/afcmd.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/afcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/afcmd.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_arguments.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_config.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_config.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_confirm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_confirm.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_confirm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_confirm.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_database.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_invalid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_invalid.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_invalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_invalid.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_job.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_job.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_json.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_json.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_monitor.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_monitor.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_network.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_network.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_numeric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_numeric.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_numeric.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_parse.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_passwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_passwd.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_passwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_passwd.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_path.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_path.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_pool.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_pool.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_regexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_regexp.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_regexp.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_render.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_render.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_service.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_string.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_string.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_task.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_task.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_test.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_test.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_text.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_text.h -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_user.cpp -------------------------------------------------------------------------------- /afanasy/src/cmd/cmd_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/cmd_user.h -------------------------------------------------------------------------------- /afanasy/src/cmd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/cmd/main.cpp -------------------------------------------------------------------------------- /afanasy/src/fermer/General.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/fermer/General.cpp -------------------------------------------------------------------------------- /afanasy/src/fermer/General.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/fermer/General.h -------------------------------------------------------------------------------- /afanasy/src/fermer/JobObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/fermer/JobObject.h -------------------------------------------------------------------------------- /afanasy/src/fermer/JobsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/fermer/JobsModel.h -------------------------------------------------------------------------------- /afanasy/src/fermer/TaskObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/fermer/TaskObject.h -------------------------------------------------------------------------------- /afanasy/src/fermer/TasksModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/fermer/TasksModel.h -------------------------------------------------------------------------------- /afanasy/src/fermer/UserObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/fermer/UserObject.h -------------------------------------------------------------------------------- /afanasy/src/fermer/UsersModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/fermer/UsersModel.h -------------------------------------------------------------------------------- /afanasy/src/fermer/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/fermer/common.h -------------------------------------------------------------------------------- /afanasy/src/fermer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/fermer/main.cpp -------------------------------------------------------------------------------- /afanasy/src/fermer/qml/RobotoTTF/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2016,6,16,12,7,18 3 | ViewMode=1 4 | -------------------------------------------------------------------------------- /afanasy/src/fermer/qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/fermer/qml/main.qml -------------------------------------------------------------------------------- /afanasy/src/fermer/qml/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/fermer/qml/view.qml -------------------------------------------------------------------------------- /afanasy/src/fermer/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/fermer/state.hpp -------------------------------------------------------------------------------- /afanasy/src/fermer/version_config.h: -------------------------------------------------------------------------------- 1 | #define PKG_VERSION "0.8.4" 2 | -------------------------------------------------------------------------------- /afanasy/src/include/afanasy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/include/afanasy.h -------------------------------------------------------------------------------- /afanasy/src/include/afgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/include/afgui.h -------------------------------------------------------------------------------- /afanasy/src/include/afjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/include/afjob.h -------------------------------------------------------------------------------- /afanasy/src/include/afpynames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/include/afpynames.h -------------------------------------------------------------------------------- /afanasy/src/include/afversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/include/afversion.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/af.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/af.cpp -------------------------------------------------------------------------------- /afanasy/src/libafanasy/af.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/af.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/afattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/afattr.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/affarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/affarm.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/afnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/afnode.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/afwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/afwork.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/branch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/branch.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/client.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/job.cpp -------------------------------------------------------------------------------- /afanasy/src/libafanasy/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/job.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/log.cpp -------------------------------------------------------------------------------- /afanasy/src/libafanasy/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/log.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/logger.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/msg.cpp -------------------------------------------------------------------------------- /afanasy/src/libafanasy/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/msg.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/netif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/netif.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/pool.cpp -------------------------------------------------------------------------------- /afanasy/src/libafanasy/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/pool.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/regexp.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/render.h -------------------------------------------------------------------------------- /afanasy/src/libafanasy/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/user.cpp -------------------------------------------------------------------------------- /afanasy/src/libafanasy/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafanasy/user.h -------------------------------------------------------------------------------- /afanasy/src/libafqt/attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafqt/attr.cpp -------------------------------------------------------------------------------- /afanasy/src/libafqt/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafqt/attr.h -------------------------------------------------------------------------------- /afanasy/src/libafqt/attrcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafqt/attrcolor.h -------------------------------------------------------------------------------- /afanasy/src/libafqt/attrrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafqt/attrrect.h -------------------------------------------------------------------------------- /afanasy/src/libafqt/name_afqt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafqt/name_afqt.h -------------------------------------------------------------------------------- /afanasy/src/libafqt/qafclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafqt/qafclient.h -------------------------------------------------------------------------------- /afanasy/src/libafsql/dbattr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafsql/dbattr.cpp -------------------------------------------------------------------------------- /afanasy/src/libafsql/dbattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafsql/dbattr.h -------------------------------------------------------------------------------- /afanasy/src/libafsql/dbitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafsql/dbitem.cpp -------------------------------------------------------------------------------- /afanasy/src/libafsql/dbitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafsql/dbitem.h -------------------------------------------------------------------------------- /afanasy/src/libafsql/dbjob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafsql/dbjob.cpp -------------------------------------------------------------------------------- /afanasy/src/libafsql/dbjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafsql/dbjob.h -------------------------------------------------------------------------------- /afanasy/src/libafsql/dblog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafsql/dblog.cpp -------------------------------------------------------------------------------- /afanasy/src/libafsql/dblog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafsql/dblog.h -------------------------------------------------------------------------------- /afanasy/src/libafsql/dbtask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafsql/dbtask.cpp -------------------------------------------------------------------------------- /afanasy/src/libafsql/dbtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/libafsql/dbtask.h -------------------------------------------------------------------------------- /afanasy/src/render/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/render/main.cpp -------------------------------------------------------------------------------- /afanasy/src/render/parserhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/render/parserhost.h -------------------------------------------------------------------------------- /afanasy/src/render/pyres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/render/pyres.cpp -------------------------------------------------------------------------------- /afanasy/src/render/pyres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/render/pyres.h -------------------------------------------------------------------------------- /afanasy/src/render/renderhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/render/renderhost.h -------------------------------------------------------------------------------- /afanasy/src/render/res.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/render/res.cpp -------------------------------------------------------------------------------- /afanasy/src/render/res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/render/res.h -------------------------------------------------------------------------------- /afanasy/src/server/action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/action.cpp -------------------------------------------------------------------------------- /afanasy/src/server/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/action.h -------------------------------------------------------------------------------- /afanasy/src/server/afcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/afcommon.cpp -------------------------------------------------------------------------------- /afanasy/src/server/afcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/afcommon.h -------------------------------------------------------------------------------- /afanasy/src/server/aflist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/aflist.cpp -------------------------------------------------------------------------------- /afanasy/src/server/aflist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/aflist.h -------------------------------------------------------------------------------- /afanasy/src/server/afnodefarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/afnodefarm.h -------------------------------------------------------------------------------- /afanasy/src/server/afnodesrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/afnodesrv.h -------------------------------------------------------------------------------- /afanasy/src/server/auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/auth.cpp -------------------------------------------------------------------------------- /afanasy/src/server/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/auth.h -------------------------------------------------------------------------------- /afanasy/src/server/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/block.cpp -------------------------------------------------------------------------------- /afanasy/src/server/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/block.h -------------------------------------------------------------------------------- /afanasy/src/server/branchsrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/branchsrv.h -------------------------------------------------------------------------------- /afanasy/src/server/dbqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/dbqueue.cpp -------------------------------------------------------------------------------- /afanasy/src/server/dbqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/dbqueue.h -------------------------------------------------------------------------------- /afanasy/src/server/filequeue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/filequeue.h -------------------------------------------------------------------------------- /afanasy/src/server/httpget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/httpget.cpp -------------------------------------------------------------------------------- /afanasy/src/server/httpget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/httpget.hpp -------------------------------------------------------------------------------- /afanasy/src/server/jobaf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/jobaf.cpp -------------------------------------------------------------------------------- /afanasy/src/server/jobaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/jobaf.h -------------------------------------------------------------------------------- /afanasy/src/server/logqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/logqueue.cpp -------------------------------------------------------------------------------- /afanasy/src/server/logqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/logqueue.h -------------------------------------------------------------------------------- /afanasy/src/server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/main.cpp -------------------------------------------------------------------------------- /afanasy/src/server/monitoraf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/monitoraf.h -------------------------------------------------------------------------------- /afanasy/src/server/poolsrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/poolsrv.cpp -------------------------------------------------------------------------------- /afanasy/src/server/poolsrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/poolsrv.h -------------------------------------------------------------------------------- /afanasy/src/server/profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/profiler.cpp -------------------------------------------------------------------------------- /afanasy/src/server/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/profiler.h -------------------------------------------------------------------------------- /afanasy/src/server/renderaf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/renderaf.cpp -------------------------------------------------------------------------------- /afanasy/src/server/renderaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/renderaf.h -------------------------------------------------------------------------------- /afanasy/src/server/solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/solver.cpp -------------------------------------------------------------------------------- /afanasy/src/server/solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/solver.h -------------------------------------------------------------------------------- /afanasy/src/server/store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/store.cpp -------------------------------------------------------------------------------- /afanasy/src/server/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/store.h -------------------------------------------------------------------------------- /afanasy/src/server/sysjob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/sysjob.cpp -------------------------------------------------------------------------------- /afanasy/src/server/sysjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/sysjob.h -------------------------------------------------------------------------------- /afanasy/src/server/sysjob_wol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/sysjob_wol.h -------------------------------------------------------------------------------- /afanasy/src/server/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/task.cpp -------------------------------------------------------------------------------- /afanasy/src/server/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/task.h -------------------------------------------------------------------------------- /afanasy/src/server/taskrun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/taskrun.cpp -------------------------------------------------------------------------------- /afanasy/src/server/taskrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/taskrun.h -------------------------------------------------------------------------------- /afanasy/src/server/threadargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/threadargs.h -------------------------------------------------------------------------------- /afanasy/src/server/useraf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/useraf.cpp -------------------------------------------------------------------------------- /afanasy/src/server/useraf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/server/useraf.h -------------------------------------------------------------------------------- /afanasy/src/service/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/service/main.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/actionid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/actionid.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/actionid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/actionid.h -------------------------------------------------------------------------------- /afanasy/src/watch/blockinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/blockinfo.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/blockinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/blockinfo.h -------------------------------------------------------------------------------- /afanasy/src/watch/button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/button.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/button.h -------------------------------------------------------------------------------- /afanasy/src/watch/buttonpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/buttonpanel.h -------------------------------------------------------------------------------- /afanasy/src/watch/buttonsmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/buttonsmenu.h -------------------------------------------------------------------------------- /afanasy/src/watch/colorwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/colorwidget.h -------------------------------------------------------------------------------- /afanasy/src/watch/ctrljobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/ctrljobs.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/ctrljobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/ctrljobs.h -------------------------------------------------------------------------------- /afanasy/src/watch/ctrlrenders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/ctrlrenders.h -------------------------------------------------------------------------------- /afanasy/src/watch/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/dialog.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/dialog.h -------------------------------------------------------------------------------- /afanasy/src/watch/filewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/filewidget.h -------------------------------------------------------------------------------- /afanasy/src/watch/fontwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/fontwidget.h -------------------------------------------------------------------------------- /afanasy/src/watch/infoline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/infoline.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/infoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/infoline.h -------------------------------------------------------------------------------- /afanasy/src/watch/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/item.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/item.h -------------------------------------------------------------------------------- /afanasy/src/watch/itembranch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itembranch.h -------------------------------------------------------------------------------- /afanasy/src/watch/itembutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itembutton.h -------------------------------------------------------------------------------- /afanasy/src/watch/itemfarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itemfarm.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/itemfarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itemfarm.h -------------------------------------------------------------------------------- /afanasy/src/watch/itemjob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itemjob.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/itemjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itemjob.h -------------------------------------------------------------------------------- /afanasy/src/watch/itemjobtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itemjobtask.h -------------------------------------------------------------------------------- /afanasy/src/watch/itemmonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itemmonitor.h -------------------------------------------------------------------------------- /afanasy/src/watch/itemnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itemnode.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/itemnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itemnode.h -------------------------------------------------------------------------------- /afanasy/src/watch/itempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itempool.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/itempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itempool.h -------------------------------------------------------------------------------- /afanasy/src/watch/itemrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itemrender.h -------------------------------------------------------------------------------- /afanasy/src/watch/itemuser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itemuser.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/itemuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itemuser.h -------------------------------------------------------------------------------- /afanasy/src/watch/itemwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itemwork.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/itemwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/itemwork.h -------------------------------------------------------------------------------- /afanasy/src/watch/listitems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/listitems.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/listitems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/listitems.h -------------------------------------------------------------------------------- /afanasy/src/watch/listjobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/listjobs.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/listjobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/listjobs.h -------------------------------------------------------------------------------- /afanasy/src/watch/listnodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/listnodes.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/listnodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/listnodes.h -------------------------------------------------------------------------------- /afanasy/src/watch/listrenders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/listrenders.h -------------------------------------------------------------------------------- /afanasy/src/watch/listtasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/listtasks.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/listtasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/listtasks.h -------------------------------------------------------------------------------- /afanasy/src/watch/listusers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/listusers.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/listusers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/listusers.h -------------------------------------------------------------------------------- /afanasy/src/watch/listwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/listwork.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/listwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/listwork.h -------------------------------------------------------------------------------- /afanasy/src/watch/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/main.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/modelitems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/modelitems.h -------------------------------------------------------------------------------- /afanasy/src/watch/modelnodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/modelnodes.h -------------------------------------------------------------------------------- /afanasy/src/watch/monitorhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/monitorhost.h -------------------------------------------------------------------------------- /afanasy/src/watch/param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/param.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/param.h -------------------------------------------------------------------------------- /afanasy/src/watch/paramspanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/paramspanel.h -------------------------------------------------------------------------------- /afanasy/src/watch/plotter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/plotter.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/plotter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/plotter.h -------------------------------------------------------------------------------- /afanasy/src/watch/popup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/popup.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/popup.h -------------------------------------------------------------------------------- /afanasy/src/watch/receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/receiver.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/receiver.h -------------------------------------------------------------------------------- /afanasy/src/watch/viewitems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/viewitems.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/viewitems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/viewitems.h -------------------------------------------------------------------------------- /afanasy/src/watch/watch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/watch.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/watch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/watch.h -------------------------------------------------------------------------------- /afanasy/src/watch/wnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/wnd.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/wnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/wnd.h -------------------------------------------------------------------------------- /afanasy/src/watch/wndlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/wndlist.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/wndlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/wndlist.h -------------------------------------------------------------------------------- /afanasy/src/watch/wndtask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/wndtask.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/wndtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/wndtask.h -------------------------------------------------------------------------------- /afanasy/src/watch/wndtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/wndtext.cpp -------------------------------------------------------------------------------- /afanasy/src/watch/wndtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/src/watch/wndtext.h -------------------------------------------------------------------------------- /afanasy/statistics/afstatsrv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/statistics/afstatsrv.py -------------------------------------------------------------------------------- /afanasy/statistics/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/statistics/favicon.ico -------------------------------------------------------------------------------- /afanasy/statistics/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/statistics/general.js -------------------------------------------------------------------------------- /afanasy/statistics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/statistics/index.html -------------------------------------------------------------------------------- /afanasy/statistics/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/statistics/server.php -------------------------------------------------------------------------------- /afanasy/statistics/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/statistics/styles.css -------------------------------------------------------------------------------- /afanasy/statistics/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy/statistics/test.py -------------------------------------------------------------------------------- /afanasy_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/afanasy_logo.svg -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries 2 | 3 | convert 4 | ffmpeg 5 | 6 | -------------------------------------------------------------------------------- /bin/deletefiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/deletefiles -------------------------------------------------------------------------------- /bin/deletefiles.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/deletefiles.cmd -------------------------------------------------------------------------------- /bin/documentation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/documentation -------------------------------------------------------------------------------- /bin/documentation.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/documentation.cmd -------------------------------------------------------------------------------- /bin/emailsend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/emailsend -------------------------------------------------------------------------------- /bin/emailsend.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/emailsend.cmd -------------------------------------------------------------------------------- /bin/forum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/forum -------------------------------------------------------------------------------- /bin/forum.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/forum.cmd -------------------------------------------------------------------------------- /bin/movconvert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/movconvert -------------------------------------------------------------------------------- /bin/movconvert.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/movconvert.cmd -------------------------------------------------------------------------------- /bin/openfolder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/openfolder -------------------------------------------------------------------------------- /bin/openterminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/openterminal -------------------------------------------------------------------------------- /bin/python: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | "$CGRU_PYTHONEXE" "$@" 4 | -------------------------------------------------------------------------------- /bin/python.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | %CGRU_PYTHONEXE% %* 4 | -------------------------------------------------------------------------------- /bin/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/rules -------------------------------------------------------------------------------- /bin/rules.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/rules.cmd -------------------------------------------------------------------------------- /bin/wolsleep: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo mem > /sys/power/state 4 | -------------------------------------------------------------------------------- /bin/wolsleep.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | Rundll32.exe Powrprof.dll,SetSuspendState Sleep 4 | -------------------------------------------------------------------------------- /bin/wolwake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/wolwake -------------------------------------------------------------------------------- /bin/wolwake.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/bin/wolwake.cmd -------------------------------------------------------------------------------- /cgru_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/cgru_logo.svg -------------------------------------------------------------------------------- /config_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/config_default.json -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | # Output 2 | 3 | _build 4 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/about/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/about/about.rst -------------------------------------------------------------------------------- /docs/afanasy/afanasy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/afanasy.rst -------------------------------------------------------------------------------- /docs/afanasy/afcmd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/afcmd.rst -------------------------------------------------------------------------------- /docs/afanasy/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/api.rst -------------------------------------------------------------------------------- /docs/afanasy/branch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/branch.rst -------------------------------------------------------------------------------- /docs/afanasy/images/doom2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/images/doom2.jpg -------------------------------------------------------------------------------- /docs/afanasy/job.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/job.rst -------------------------------------------------------------------------------- /docs/afanasy/job_block.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/job_block.rst -------------------------------------------------------------------------------- /docs/afanasy/job_task.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/job_task.rst -------------------------------------------------------------------------------- /docs/afanasy/pools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/pools.rst -------------------------------------------------------------------------------- /docs/afanasy/render.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/render.rst -------------------------------------------------------------------------------- /docs/afanasy/server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/server.rst -------------------------------------------------------------------------------- /docs/afanasy/tickets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/tickets.rst -------------------------------------------------------------------------------- /docs/afanasy/user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/user.rst -------------------------------------------------------------------------------- /docs/afanasy/watch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/watch.rst -------------------------------------------------------------------------------- /docs/afanasy/webgui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afanasy/webgui.rst -------------------------------------------------------------------------------- /docs/afstarter/afstarter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afstarter/afstarter.rst -------------------------------------------------------------------------------- /docs/afstarter/dialog_job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afstarter/dialog_job.png -------------------------------------------------------------------------------- /docs/afstarter/dialog_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/afstarter/dialog_scene.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contacts/contacts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/contacts/contacts.rst -------------------------------------------------------------------------------- /docs/downloads/downloads.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/downloads/downloads.rst -------------------------------------------------------------------------------- /docs/examples/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/examples/examples.rst -------------------------------------------------------------------------------- /docs/fun/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/fun/index.rst -------------------------------------------------------------------------------- /docs/fun/nimby_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/fun/nimby_1.jpg -------------------------------------------------------------------------------- /docs/fun/nimby_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/fun/nimby_2.jpg -------------------------------------------------------------------------------- /docs/fun/nimby_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/fun/nimby_3.jpg -------------------------------------------------------------------------------- /docs/fun/nimby_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/fun/nimby_4.jpg -------------------------------------------------------------------------------- /docs/fun/nimby_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/fun/nimby_5.jpg -------------------------------------------------------------------------------- /docs/fun/nimby_terminator_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/fun/nimby_terminator_1.jpg -------------------------------------------------------------------------------- /docs/fun/nimby_terminator_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/fun/nimby_terminator_2.jpg -------------------------------------------------------------------------------- /docs/fun/producers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/fun/producers.svg -------------------------------------------------------------------------------- /docs/fun/shashlik.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/fun/shashlik.jpg -------------------------------------------------------------------------------- /docs/howto/appendtask/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/howto/appendtask/index.rst -------------------------------------------------------------------------------- /docs/howto/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/howto/index.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/keeper/keeper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/keeper/keeper.rst -------------------------------------------------------------------------------- /docs/keeper/linux_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/keeper/linux_menu.png -------------------------------------------------------------------------------- /docs/license/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/license/license.rst -------------------------------------------------------------------------------- /docs/regexp/regexp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/regexp/regexp.rst -------------------------------------------------------------------------------- /docs/regexp/regexp_checker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/regexp/regexp_checker.png -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx_rtd_theme==2.0.0 2 | -------------------------------------------------------------------------------- /docs/rules/rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/rules/rules.rst -------------------------------------------------------------------------------- /docs/software/afterfx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/software/afterfx.rst -------------------------------------------------------------------------------- /docs/software/blender.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/software/blender.rst -------------------------------------------------------------------------------- /docs/software/cinema4d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/software/cinema4d.rst -------------------------------------------------------------------------------- /docs/software/clarisse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/software/clarisse.rst -------------------------------------------------------------------------------- /docs/software/fusion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/software/fusion.rst -------------------------------------------------------------------------------- /docs/software/houdini.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/software/houdini.rst -------------------------------------------------------------------------------- /docs/software/lightwave.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/software/lightwave.rst -------------------------------------------------------------------------------- /docs/software/max.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/software/max.rst -------------------------------------------------------------------------------- /docs/software/maya.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/software/maya.rst -------------------------------------------------------------------------------- /docs/software/natron.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/software/natron.rst -------------------------------------------------------------------------------- /docs/software/nuke.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/software/nuke.rst -------------------------------------------------------------------------------- /docs/software/softimage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/software/softimage.rst -------------------------------------------------------------------------------- /docs/software/software.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/docs/software/software.rst -------------------------------------------------------------------------------- /examples/After FX/clear.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/After FX/clear.cmd -------------------------------------------------------------------------------- /examples/After FX/comp.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/After FX/comp.aep -------------------------------------------------------------------------------- /examples/After FX/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/After FX/render.py -------------------------------------------------------------------------------- /examples/Cinema 4D/clear.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/Cinema 4D/clear.cmd -------------------------------------------------------------------------------- /examples/Cinema 4D/scene 1.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/Cinema 4D/scene 1.c4d -------------------------------------------------------------------------------- /examples/Fusion/afjob.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/Fusion/afjob.cmd -------------------------------------------------------------------------------- /examples/Fusion/command.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/Fusion/command.cmd -------------------------------------------------------------------------------- /examples/Fusion/command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/Fusion/command.sh -------------------------------------------------------------------------------- /examples/blender/.gitignore: -------------------------------------------------------------------------------- 1 | render 2 | -------------------------------------------------------------------------------- /examples/blender/clear.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/blender/clear.cmd -------------------------------------------------------------------------------- /examples/blender/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/blender/clear.sh -------------------------------------------------------------------------------- /examples/blender/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/blender/render.py -------------------------------------------------------------------------------- /examples/blender/scene.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/blender/scene.blend -------------------------------------------------------------------------------- /examples/clarisse/afjob.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/clarisse/afjob.cmd -------------------------------------------------------------------------------- /examples/clarisse/afjob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/clarisse/afjob.sh -------------------------------------------------------------------------------- /examples/clarisse/clear.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/clarisse/clear.cmd -------------------------------------------------------------------------------- /examples/clarisse/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/clarisse/clear.sh -------------------------------------------------------------------------------- /examples/clarisse/command.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/clarisse/command.cmd -------------------------------------------------------------------------------- /examples/clarisse/command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/clarisse/command.sh -------------------------------------------------------------------------------- /examples/clarisse/scene.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/clarisse/scene.project -------------------------------------------------------------------------------- /examples/clear.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/clear.cmd -------------------------------------------------------------------------------- /examples/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/clear.sh -------------------------------------------------------------------------------- /examples/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/docker/README.md -------------------------------------------------------------------------------- /examples/houdini/.gitignore: -------------------------------------------------------------------------------- 1 | backup 2 | render 3 | -------------------------------------------------------------------------------- /examples/houdini/clear.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/houdini/clear.cmd -------------------------------------------------------------------------------- /examples/houdini/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/houdini/clear.sh -------------------------------------------------------------------------------- /examples/houdini/parse.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/houdini/parse.cmd -------------------------------------------------------------------------------- /examples/houdini/pdg.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/houdini/pdg.hip -------------------------------------------------------------------------------- /examples/houdini/render.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/houdini/render.cmd -------------------------------------------------------------------------------- /examples/houdini/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/houdini/render.py -------------------------------------------------------------------------------- /examples/houdini/render.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/houdini/render.sh -------------------------------------------------------------------------------- /examples/houdini/scene.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/houdini/scene.hip -------------------------------------------------------------------------------- /examples/houdini/tile_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/houdini/tile_render.py -------------------------------------------------------------------------------- /examples/json/action_jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/json/action_jobs.json -------------------------------------------------------------------------------- /examples/json/action_pools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/json/action_pools.json -------------------------------------------------------------------------------- /examples/json/announce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/json/announce.json -------------------------------------------------------------------------------- /examples/json/get_branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/json/get_branches.json -------------------------------------------------------------------------------- /examples/json/get_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "get": 3 | { 4 | "type" : "config" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /examples/json/get_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/json/get_files.json -------------------------------------------------------------------------------- /examples/json/get_job_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/json/get_job_log.json -------------------------------------------------------------------------------- /examples/json/get_jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/json/get_jobs.json -------------------------------------------------------------------------------- /examples/json/get_pools.json: -------------------------------------------------------------------------------- 1 | { 2 | "get": 3 | { 4 | "type" : "pools" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /examples/json/get_renders.json: -------------------------------------------------------------------------------- 1 | { 2 | "get": 3 | { 4 | "type" : "renders" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /examples/json/get_users.json: -------------------------------------------------------------------------------- 1 | { 2 | "get": 3 | { 4 | "type" : "users" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /examples/json/job_maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/json/job_maximum.json -------------------------------------------------------------------------------- /examples/json/job_minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/json/job_minimum.json -------------------------------------------------------------------------------- /examples/json/monitor_jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/json/monitor_jobs.json -------------------------------------------------------------------------------- /examples/json/reload_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "reload_config":{} 3 | } 4 | -------------------------------------------------------------------------------- /examples/json/save_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/json/save_object.json -------------------------------------------------------------------------------- /examples/json/user_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/json/user_add.json -------------------------------------------------------------------------------- /examples/maya/clear.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/maya/clear.cmd -------------------------------------------------------------------------------- /examples/maya/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/maya/clear.sh -------------------------------------------------------------------------------- /examples/maya/render.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/maya/render.cmd -------------------------------------------------------------------------------- /examples/maya/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/maya/render.py -------------------------------------------------------------------------------- /examples/maya/render.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/maya/render.sh -------------------------------------------------------------------------------- /examples/maya/scene.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/maya/scene.mb -------------------------------------------------------------------------------- /examples/maya/start_maya.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/maya/start_maya.cmd -------------------------------------------------------------------------------- /examples/maya/start_maya.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/maya/start_maya.sh -------------------------------------------------------------------------------- /examples/maya/workspace.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/maya/workspace.mel -------------------------------------------------------------------------------- /examples/natron/afjob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/natron/afjob.sh -------------------------------------------------------------------------------- /examples/natron/clear.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/natron/clear.cmd -------------------------------------------------------------------------------- /examples/natron/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/natron/clear.sh -------------------------------------------------------------------------------- /examples/natron/command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/natron/command.sh -------------------------------------------------------------------------------- /examples/natron/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/natron/job.py -------------------------------------------------------------------------------- /examples/natron/scene.ntp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/natron/scene.ntp -------------------------------------------------------------------------------- /examples/natron/script.py: -------------------------------------------------------------------------------- 1 | print('ololo') 2 | 3 | -------------------------------------------------------------------------------- /examples/natron/start_natron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/natron/start_natron.sh -------------------------------------------------------------------------------- /examples/nuke/clear.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/nuke/clear.cmd -------------------------------------------------------------------------------- /examples/nuke/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/nuke/clear.sh -------------------------------------------------------------------------------- /examples/nuke/encode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/nuke/encode.sh -------------------------------------------------------------------------------- /examples/nuke/parse.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/nuke/parse.cmd -------------------------------------------------------------------------------- /examples/nuke/render.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/nuke/render.cmd -------------------------------------------------------------------------------- /examples/nuke/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/nuke/render.py -------------------------------------------------------------------------------- /examples/nuke/render.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/nuke/render.sh -------------------------------------------------------------------------------- /examples/nuke/scene.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/nuke/scene.nk -------------------------------------------------------------------------------- /examples/nuke/scene_stereo.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/nuke/scene_stereo.nk -------------------------------------------------------------------------------- /examples/nuke/start_nuke.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/nuke/start_nuke.cmd -------------------------------------------------------------------------------- /examples/nuke/start_nuke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/nuke/start_nuke.sh -------------------------------------------------------------------------------- /examples/softimage/clear.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/softimage/clear.cmd -------------------------------------------------------------------------------- /examples/softimage/parse.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/softimage/parse.cmd -------------------------------------------------------------------------------- /examples/softimage/render.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/softimage/render.cmd -------------------------------------------------------------------------------- /examples/test scripts/clear.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/test scripts/clear.cmd -------------------------------------------------------------------------------- /examples/test scripts/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/test scripts/clear.sh -------------------------------------------------------------------------------- /examples/test scripts/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/test scripts/job.py -------------------------------------------------------------------------------- /examples/test scripts/job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/test scripts/job.sh -------------------------------------------------------------------------------- /examples/test scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/test scripts/setup.sh -------------------------------------------------------------------------------- /examples/test scripts/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/examples/test scripts/task.py -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/favicon.ico -------------------------------------------------------------------------------- /htaccess_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/htaccess_example -------------------------------------------------------------------------------- /icons/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/.gitignore -------------------------------------------------------------------------------- /icons/afanasy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/afanasy.png -------------------------------------------------------------------------------- /icons/afanasy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/afanasy.svg -------------------------------------------------------------------------------- /icons/afwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/afwatch.png -------------------------------------------------------------------------------- /icons/afwatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/afwatch.svg -------------------------------------------------------------------------------- /icons/cgru-devel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/cgru-devel.png -------------------------------------------------------------------------------- /icons/cgru-devel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/cgru-devel.svg -------------------------------------------------------------------------------- /icons/cgruicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/cgruicon.svg -------------------------------------------------------------------------------- /icons/cgrumenuitem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/cgrumenuitem.svg -------------------------------------------------------------------------------- /icons/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/configure.png -------------------------------------------------------------------------------- /icons/dailies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/dailies.png -------------------------------------------------------------------------------- /icons/dailies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/dailies.svg -------------------------------------------------------------------------------- /icons/documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/documentation.png -------------------------------------------------------------------------------- /icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/folder.png -------------------------------------------------------------------------------- /icons/forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/forum.png -------------------------------------------------------------------------------- /icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/info.png -------------------------------------------------------------------------------- /icons/keeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/keeper.png -------------------------------------------------------------------------------- /icons/keeper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/keeper.svg -------------------------------------------------------------------------------- /icons/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/make.sh -------------------------------------------------------------------------------- /icons/moviemaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/moviemaker.png -------------------------------------------------------------------------------- /icons/regexp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/regexp.png -------------------------------------------------------------------------------- /icons/regexp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/regexp.svg -------------------------------------------------------------------------------- /icons/scanscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/scanscan.png -------------------------------------------------------------------------------- /icons/scanscan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/scanscan.svg -------------------------------------------------------------------------------- /icons/software/3dsmax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/3dsmax.png -------------------------------------------------------------------------------- /icons/software/afterfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/afterfx.png -------------------------------------------------------------------------------- /icons/software/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/arch.png -------------------------------------------------------------------------------- /icons/software/arnold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/arnold.png -------------------------------------------------------------------------------- /icons/software/blender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/blender.png -------------------------------------------------------------------------------- /icons/software/c4d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/c4d.png -------------------------------------------------------------------------------- /icons/software/checksum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/checksum.png -------------------------------------------------------------------------------- /icons/software/clarisse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/clarisse.png -------------------------------------------------------------------------------- /icons/software/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/events.png -------------------------------------------------------------------------------- /icons/software/ffmpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/ffmpeg.png -------------------------------------------------------------------------------- /icons/software/ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/ftp.png -------------------------------------------------------------------------------- /icons/software/ftrack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/ftrack.png -------------------------------------------------------------------------------- /icons/software/fusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/fusion.png -------------------------------------------------------------------------------- /icons/software/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/generic.png -------------------------------------------------------------------------------- /icons/software/hbatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/hbatch.png -------------------------------------------------------------------------------- /icons/software/hbatch_karma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/hbatch_karma.png -------------------------------------------------------------------------------- /icons/software/hbatch_pdg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/hbatch_pdg.png -------------------------------------------------------------------------------- /icons/software/hbatch_prman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/hbatch_prman.png -------------------------------------------------------------------------------- /icons/software/houdini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/houdini.png -------------------------------------------------------------------------------- /icons/software/htracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/htracker.png -------------------------------------------------------------------------------- /icons/software/karma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/karma.png -------------------------------------------------------------------------------- /icons/software/lightwave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/lightwave.png -------------------------------------------------------------------------------- /icons/software/mantra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/mantra.png -------------------------------------------------------------------------------- /icons/software/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/max.png -------------------------------------------------------------------------------- /icons/software/maya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/maya.png -------------------------------------------------------------------------------- /icons/software/maya_arnold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/maya_arnold.png -------------------------------------------------------------------------------- /icons/software/maya_mental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/maya_mental.png -------------------------------------------------------------------------------- /icons/software/maya_vray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/maya_vray.png -------------------------------------------------------------------------------- /icons/software/mayatoarnold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/mayatoarnold.png -------------------------------------------------------------------------------- /icons/software/mayatomr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/mayatomr.png -------------------------------------------------------------------------------- /icons/software/mayatovray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/mayatovray.png -------------------------------------------------------------------------------- /icons/software/mentalray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/mentalray.png -------------------------------------------------------------------------------- /icons/software/movgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/movgen.png -------------------------------------------------------------------------------- /icons/software/natron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/natron.png -------------------------------------------------------------------------------- /icons/software/nuke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/nuke.png -------------------------------------------------------------------------------- /icons/software/nukex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/nukex.png -------------------------------------------------------------------------------- /icons/software/postcmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/postcmd.png -------------------------------------------------------------------------------- /icons/software/prman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/prman.png -------------------------------------------------------------------------------- /icons/software/put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/put.png -------------------------------------------------------------------------------- /icons/software/shake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/shake.png -------------------------------------------------------------------------------- /icons/software/shotgun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/shotgun.png -------------------------------------------------------------------------------- /icons/software/softimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/softimage.png -------------------------------------------------------------------------------- /icons/software/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/system.png -------------------------------------------------------------------------------- /icons/software/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/test.png -------------------------------------------------------------------------------- /icons/software/tiles_stitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/tiles_stitch.png -------------------------------------------------------------------------------- /icons/software/vray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/vray.png -------------------------------------------------------------------------------- /icons/software/wakeonlan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/wakeonlan.png -------------------------------------------------------------------------------- /icons/software/walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/walk.png -------------------------------------------------------------------------------- /icons/software/xsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/xsi.png -------------------------------------------------------------------------------- /icons/software/xsi_arnold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/xsi_arnold.png -------------------------------------------------------------------------------- /icons/software/xsi_redshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/xsi_redshift.png -------------------------------------------------------------------------------- /icons/software/yafray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/software/yafray.png -------------------------------------------------------------------------------- /icons/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/terminal.png -------------------------------------------------------------------------------- /icons/tickets/GPU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/tickets/GPU.png -------------------------------------------------------------------------------- /icons/tickets/HYTHON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/tickets/HYTHON.png -------------------------------------------------------------------------------- /icons/tickets/KARMA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/tickets/KARMA.png -------------------------------------------------------------------------------- /icons/tickets/MANTRA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/tickets/MANTRA.png -------------------------------------------------------------------------------- /icons/tickets/MEM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/tickets/MEM.png -------------------------------------------------------------------------------- /icons/tickets/NET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/tickets/NET.png -------------------------------------------------------------------------------- /icons/tickets/NUKE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/tickets/NUKE.png -------------------------------------------------------------------------------- /icons/tickets/PDG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/tickets/PDG.png -------------------------------------------------------------------------------- /icons/tickets/REDSHIFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/tickets/REDSHIFT.png -------------------------------------------------------------------------------- /icons/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/icons/tools.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/index.html -------------------------------------------------------------------------------- /lib/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/icons/delete.png -------------------------------------------------------------------------------- /lib/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/icons/open.png -------------------------------------------------------------------------------- /lib/js/cgru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/js/cgru.js -------------------------------------------------------------------------------- /lib/js/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/js/md5.js -------------------------------------------------------------------------------- /lib/python/Qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/python/Qt.py -------------------------------------------------------------------------------- /lib/python/cgruTempFolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/python/cgruTempFolder.py -------------------------------------------------------------------------------- /lib/python/cgruconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/python/cgruconfig.py -------------------------------------------------------------------------------- /lib/python/cgrudocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/python/cgrudocs.py -------------------------------------------------------------------------------- /lib/python/cgrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/python/cgrules.py -------------------------------------------------------------------------------- /lib/python/cgrupathmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/python/cgrupathmap.py -------------------------------------------------------------------------------- /lib/python/cgrusequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/python/cgrusequence.py -------------------------------------------------------------------------------- /lib/python/cgruutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/python/cgruutils.py -------------------------------------------------------------------------------- /lib/python/filelock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/python/filelock.py -------------------------------------------------------------------------------- /lib/python/mediainfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/python/mediainfo.py -------------------------------------------------------------------------------- /lib/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/lib/styles.css -------------------------------------------------------------------------------- /player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/player.html -------------------------------------------------------------------------------- /plugins/afterfx/Afanasy.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/afterfx/Afanasy.jsx -------------------------------------------------------------------------------- /plugins/c4d/python_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/c4d/python_init.py -------------------------------------------------------------------------------- /plugins/c4d/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/c4d/render.py -------------------------------------------------------------------------------- /plugins/fusion/.gitignore: -------------------------------------------------------------------------------- 1 | cgru.prefs -------------------------------------------------------------------------------- /plugins/fusion/Comp/Afanasy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/fusion/Comp/Afanasy.py -------------------------------------------------------------------------------- /plugins/fusion/makeprefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/fusion/makeprefs.py -------------------------------------------------------------------------------- /plugins/houdini/afanasy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/houdini/afanasy.py -------------------------------------------------------------------------------- /plugins/houdini/afanasy_soho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/houdini/afanasy_soho.py -------------------------------------------------------------------------------- /plugins/houdini/hrender_af.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/houdini/hrender_af.py -------------------------------------------------------------------------------- /plugins/houdini/htracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/houdini/htracker.py -------------------------------------------------------------------------------- /plugins/lightwave/lwsn.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/lightwave/lwsn.bat -------------------------------------------------------------------------------- /plugins/max/afanasy.mcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/max/afanasy.mcr -------------------------------------------------------------------------------- /plugins/max/startup.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/max/startup.ms -------------------------------------------------------------------------------- /plugins/maya/.gitignore: -------------------------------------------------------------------------------- 1 | # Binary plug-in folder 2 | 3 | mll 4 | 5 | -------------------------------------------------------------------------------- /plugins/maya/cgru.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/maya/cgru.mel -------------------------------------------------------------------------------- /plugins/maya/maya.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/maya/maya.cmd -------------------------------------------------------------------------------- /plugins/maya/maya.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/maya/maya.sh -------------------------------------------------------------------------------- /plugins/maya/mel/cgrumenu.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/maya/mel/cgrumenu.mel -------------------------------------------------------------------------------- /plugins/maya/mel/hotkeys/cmd_rendering.mel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/maya/src/.gitignore: -------------------------------------------------------------------------------- 1 | x64 2 | *.filters 3 | *.user 4 | -------------------------------------------------------------------------------- /plugins/maya/src/mac_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/maya/src/mac_build.sh -------------------------------------------------------------------------------- /plugins/natron/afanasy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/natron/afanasy.py -------------------------------------------------------------------------------- /plugins/natron/afanasyGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/natron/afanasyGroup.py -------------------------------------------------------------------------------- /plugins/natron/init.py: -------------------------------------------------------------------------------- 1 | # CGRU init script 2 | 3 | import afanasy 4 | 5 | -------------------------------------------------------------------------------- /plugins/natron/initGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/natron/initGui.py -------------------------------------------------------------------------------- /plugins/nuke/_template.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/nuke/_template.nk -------------------------------------------------------------------------------- /plugins/nuke/encode.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/nuke/encode.nk -------------------------------------------------------------------------------- /plugins/nuke/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/nuke/encode.py -------------------------------------------------------------------------------- /plugins/nuke/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/nuke/init.py -------------------------------------------------------------------------------- /plugins/nuke/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/nuke/render.py -------------------------------------------------------------------------------- /plugins/nuke/scripts/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/nuke/scripts/init.py -------------------------------------------------------------------------------- /plugins/nuke/scripts/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/nuke/scripts/menu.py -------------------------------------------------------------------------------- /plugins/nuke/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/nuke/view.py -------------------------------------------------------------------------------- /plugins/xsi/afplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/xsi/afplugin.py -------------------------------------------------------------------------------- /plugins/xsi/afrender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/xsi/afrender.py -------------------------------------------------------------------------------- /plugins/xsi/afxsisubmit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/plugins/xsi/afxsisubmit.py -------------------------------------------------------------------------------- /rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules.php -------------------------------------------------------------------------------- /rules/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/.gitignore -------------------------------------------------------------------------------- /rules/assets/forum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/assets/forum.html -------------------------------------------------------------------------------- /rules/assets/forum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/assets/forum.js -------------------------------------------------------------------------------- /rules/assets/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/assets/project.html -------------------------------------------------------------------------------- /rules/assets/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/assets/project.js -------------------------------------------------------------------------------- /rules/assets/scenes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/assets/scenes.html -------------------------------------------------------------------------------- /rules/assets/scenes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/assets/scenes.js -------------------------------------------------------------------------------- /rules/assets/shot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/assets/shot.html -------------------------------------------------------------------------------- /rules/assets/shot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/assets/shot.js -------------------------------------------------------------------------------- /rules/assets/templates/project/.rules/body.html: -------------------------------------------------------------------------------- 1 | Project body. 2 | -------------------------------------------------------------------------------- /rules/assets/templates/project/DOC/.rules/body.html: -------------------------------------------------------------------------------- 1 | Project documents. 2 | -------------------------------------------------------------------------------- /rules/assets/templates/project/IN/.rules/body.html: -------------------------------------------------------------------------------- 1 | Project inputs files, sources. 2 | -------------------------------------------------------------------------------- /rules/assets/templates/project/OUT/.rules/body.html: -------------------------------------------------------------------------------- 1 | Project output files, results. 2 | -------------------------------------------------------------------------------- /rules/assets/templates/project/SHOTS/.rules/body.html: -------------------------------------------------------------------------------- 1 | Project shots, scenes. 2 | -------------------------------------------------------------------------------- /rules/assets/templates/scene/.rules/body.html: -------------------------------------------------------------------------------- 1 | Scene shots. 2 | -------------------------------------------------------------------------------- /rules/assets/templates/shot/REF/.rules/body.html: -------------------------------------------------------------------------------- 1 | Shot reference(s). 2 | -------------------------------------------------------------------------------- /rules/assets/templates/shot/RESULT/.rules/body.html: -------------------------------------------------------------------------------- 1 | Shot results. 2 | -------------------------------------------------------------------------------- /rules/assets/templates/shot/SRC/.rules/body.html: -------------------------------------------------------------------------------- 1 | Shot sources. 2 | -------------------------------------------------------------------------------- /rules/assets/templates/shot/WORK/.rules/body.html: -------------------------------------------------------------------------------- 1 | Shot work files. 2 | -------------------------------------------------------------------------------- /rules/assets/tmpfio/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/assets/tmpfio/.htaccess -------------------------------------------------------------------------------- /rules/backup_users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/backup_users.sh -------------------------------------------------------------------------------- /rules/bin/convert: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | convert "$@" 2>&1 4 | -------------------------------------------------------------------------------- /rules/bin/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/convert.py -------------------------------------------------------------------------------- /rules/bin/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/convert.sh -------------------------------------------------------------------------------- /rules/bin/deploy_shots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/deploy_shots.py -------------------------------------------------------------------------------- /rules/bin/deploy_shots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/deploy_shots.sh -------------------------------------------------------------------------------- /rules/bin/ffmpeg: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ffmpeg "$@" 4 | -------------------------------------------------------------------------------- /rules/bin/ffprobe: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ffprobe "$@" 4 | -------------------------------------------------------------------------------- /rules/bin/find_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/find_results.py -------------------------------------------------------------------------------- /rules/bin/makecut.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/makecut.sh -------------------------------------------------------------------------------- /rules/bin/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/move.py -------------------------------------------------------------------------------- /rules/bin/shot_open_latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/shot_open_latest -------------------------------------------------------------------------------- /rules/bin/shot_open_latest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/shot_open_latest.py -------------------------------------------------------------------------------- /rules/bin/shot_process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/shot_process -------------------------------------------------------------------------------- /rules/bin/shot_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/shot_process.py -------------------------------------------------------------------------------- /rules/bin/thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/thumbnail.py -------------------------------------------------------------------------------- /rules/bin/thumbnail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/thumbnail.sh -------------------------------------------------------------------------------- /rules/bin/walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/walk.py -------------------------------------------------------------------------------- /rules/bin/walk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/bin/walk.sh -------------------------------------------------------------------------------- /rules/icons/annotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/annotate.png -------------------------------------------------------------------------------- /rules/icons/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/archive.png -------------------------------------------------------------------------------- /rules/icons/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/arrow_down.png -------------------------------------------------------------------------------- /rules/icons/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/arrow_up.png -------------------------------------------------------------------------------- /rules/icons/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/audio.png -------------------------------------------------------------------------------- /rules/icons/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/bell.png -------------------------------------------------------------------------------- /rules/icons/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/bookmark.png -------------------------------------------------------------------------------- /rules/icons/buffer_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/buffer_add.png -------------------------------------------------------------------------------- /rules/icons/buffer_take.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/buffer_take.png -------------------------------------------------------------------------------- /rules/icons/comment_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/comment_add.png -------------------------------------------------------------------------------- /rules/icons/convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/convert.png -------------------------------------------------------------------------------- /rules/icons/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/convert.sh -------------------------------------------------------------------------------- /rules/icons/count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/count.png -------------------------------------------------------------------------------- /rules/icons/crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/crop.png -------------------------------------------------------------------------------- /rules/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/cut.png -------------------------------------------------------------------------------- /rules/icons/dailies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/dailies.png -------------------------------------------------------------------------------- /rules/icons/decrease.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/decrease.png -------------------------------------------------------------------------------- /rules/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/delete.png -------------------------------------------------------------------------------- /rules/icons/delete_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/delete_all.png -------------------------------------------------------------------------------- /rules/icons/delete_hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/delete_hidden.png -------------------------------------------------------------------------------- /rules/icons/delete_visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/delete_visible.png -------------------------------------------------------------------------------- /rules/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/edit.png -------------------------------------------------------------------------------- /rules/icons/favourite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/favourite.png -------------------------------------------------------------------------------- /rules/icons/file_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/file_archive.png -------------------------------------------------------------------------------- /rules/icons/file_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/file_folder.png -------------------------------------------------------------------------------- /rules/icons/file_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/file_icon.png -------------------------------------------------------------------------------- /rules/icons/file_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/file_image.png -------------------------------------------------------------------------------- /rules/icons/file_movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/file_movie.png -------------------------------------------------------------------------------- /rules/icons/folder_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/folder_new.png -------------------------------------------------------------------------------- /rules/icons/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/hide.png -------------------------------------------------------------------------------- /rules/icons/increase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/increase.png -------------------------------------------------------------------------------- /rules/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/info.png -------------------------------------------------------------------------------- /rules/icons/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/link.png -------------------------------------------------------------------------------- /rules/icons/listen_own.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/listen_own.png -------------------------------------------------------------------------------- /rules/icons/megaphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/megaphone.png -------------------------------------------------------------------------------- /rules/icons/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/menu.png -------------------------------------------------------------------------------- /rules/icons/move_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/move_bottom.png -------------------------------------------------------------------------------- /rules/icons/move_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/move_down.png -------------------------------------------------------------------------------- /rules/icons/move_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/move_top.png -------------------------------------------------------------------------------- /rules/icons/move_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/move_up.png -------------------------------------------------------------------------------- /rules/icons/news_channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/news_channels.png -------------------------------------------------------------------------------- /rules/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/next.png -------------------------------------------------------------------------------- /rules/icons/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/play.png -------------------------------------------------------------------------------- /rules/icons/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/player.png -------------------------------------------------------------------------------- /rules/icons/plus_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/plus_down.png -------------------------------------------------------------------------------- /rules/icons/plus_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/plus_up.png -------------------------------------------------------------------------------- /rules/icons/power_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/power_button.png -------------------------------------------------------------------------------- /rules/icons/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/previous.png -------------------------------------------------------------------------------- /rules/icons/put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/put.png -------------------------------------------------------------------------------- /rules/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/refresh.png -------------------------------------------------------------------------------- /rules/icons/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/rename.png -------------------------------------------------------------------------------- /rules/icons/rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/rules.png -------------------------------------------------------------------------------- /rules/icons/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/select.png -------------------------------------------------------------------------------- /rules/icons/select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/select_all.png -------------------------------------------------------------------------------- /rules/icons/select_invert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/select_invert.png -------------------------------------------------------------------------------- /rules/icons/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/table.png -------------------------------------------------------------------------------- /rules/icons/thumbnails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/thumbnails.png -------------------------------------------------------------------------------- /rules/icons/tmpfio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/tmpfio.png -------------------------------------------------------------------------------- /rules/icons/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/top.png -------------------------------------------------------------------------------- /rules/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/up.png -------------------------------------------------------------------------------- /rules/icons/walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/icons/walk.png -------------------------------------------------------------------------------- /rules/js/activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/activity.js -------------------------------------------------------------------------------- /rules/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/admin.js -------------------------------------------------------------------------------- /rules/js/artbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/artbook.js -------------------------------------------------------------------------------- /rules/js/asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/asset.js -------------------------------------------------------------------------------- /rules/js/bookmarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/bookmarks.js -------------------------------------------------------------------------------- /rules/js/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/comments.js -------------------------------------------------------------------------------- /rules/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/common.js -------------------------------------------------------------------------------- /rules/js/dailies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/dailies.js -------------------------------------------------------------------------------- /rules/js/editcontent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/editcontent.js -------------------------------------------------------------------------------- /rules/js/editlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/editlist.js -------------------------------------------------------------------------------- /rules/js/filesutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/filesutils.js -------------------------------------------------------------------------------- /rules/js/filesview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/filesview.js -------------------------------------------------------------------------------- /rules/js/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/general.js -------------------------------------------------------------------------------- /rules/js/gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/gui.js -------------------------------------------------------------------------------- /rules/js/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/network.js -------------------------------------------------------------------------------- /rules/js/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/news.js -------------------------------------------------------------------------------- /rules/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/player.js -------------------------------------------------------------------------------- /rules/js/playlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/playlist.js -------------------------------------------------------------------------------- /rules/js/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/profile.js -------------------------------------------------------------------------------- /rules/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/search.js -------------------------------------------------------------------------------- /rules/js/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/statistics.js -------------------------------------------------------------------------------- /rules/js/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/status.js -------------------------------------------------------------------------------- /rules/js/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/table.js -------------------------------------------------------------------------------- /rules/js/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/task.js -------------------------------------------------------------------------------- /rules/js/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/ui.js -------------------------------------------------------------------------------- /rules/js/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/js/upload.js -------------------------------------------------------------------------------- /rules/player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/player.css -------------------------------------------------------------------------------- /rules/rules.00_general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rules.00_general.json -------------------------------------------------------------------------------- /rules/rulib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rulib/__init__.py -------------------------------------------------------------------------------- /rules/rulib/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rulib/comments.py -------------------------------------------------------------------------------- /rules/rulib/editobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rulib/editobj.py -------------------------------------------------------------------------------- /rules/rulib/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rulib/functions.py -------------------------------------------------------------------------------- /rules/rulib/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rulib/news.py -------------------------------------------------------------------------------- /rules/rulib/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rulib/playlist.py -------------------------------------------------------------------------------- /rules/rulib/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rulib/search.py -------------------------------------------------------------------------------- /rules/rulib/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rulib/status.py -------------------------------------------------------------------------------- /rules/rusrv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rusrv/__init__.py -------------------------------------------------------------------------------- /rules/rusrv/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rusrv/admin.py -------------------------------------------------------------------------------- /rules/rusrv/afanasy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rusrv/afanasy.py -------------------------------------------------------------------------------- /rules/rusrv/environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rusrv/environ.py -------------------------------------------------------------------------------- /rules/rusrv/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rusrv/requests.py -------------------------------------------------------------------------------- /rules/rusrv/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/rusrv/session.py -------------------------------------------------------------------------------- /rules/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/styles.css -------------------------------------------------------------------------------- /rules/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules/wsgi.py -------------------------------------------------------------------------------- /rules_root/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules_root/.gitignore -------------------------------------------------------------------------------- /rules_root/.rules/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/rules_root/.rules/body.html -------------------------------------------------------------------------------- /rules_root/Ask_Questions_Here/AFANASY/.rules/rules_forum.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "forum":"AFANASY" 4 | 5 | } 6 | -------------------------------------------------------------------------------- /rules_root/CG_PROJECT/.gitignore: -------------------------------------------------------------------------------- 1 | IN 2 | RESULT 3 | WORK 4 | COMMON 5 | -------------------------------------------------------------------------------- /rules_root/CG_PROJECT/references/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore image files: 2 | *.jpg 3 | -------------------------------------------------------------------------------- /setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/setup.cmd -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/setup.sh -------------------------------------------------------------------------------- /setup_README.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/setup_README.cmd -------------------------------------------------------------------------------- /setup_README.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/setup_README.sh -------------------------------------------------------------------------------- /setup_afanasy.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/setup_afanasy.cmd -------------------------------------------------------------------------------- /setup_afanasy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/setup_afanasy.sh -------------------------------------------------------------------------------- /setup_python.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/setup_python.cmd -------------------------------------------------------------------------------- /setup_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/setup_python.sh -------------------------------------------------------------------------------- /software_setup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/.gitignore -------------------------------------------------------------------------------- /software_setup/bin/3dsmax.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/3dsmax.cmd -------------------------------------------------------------------------------- /software_setup/bin/aerender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/aerender -------------------------------------------------------------------------------- /software_setup/bin/aerender.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/aerender.cmd -------------------------------------------------------------------------------- /software_setup/bin/afterfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/afterfx -------------------------------------------------------------------------------- /software_setup/bin/afterfx.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/afterfx.cmd -------------------------------------------------------------------------------- /software_setup/bin/blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/blender -------------------------------------------------------------------------------- /software_setup/bin/c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/c4d -------------------------------------------------------------------------------- /software_setup/bin/c4d.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/c4d.cmd -------------------------------------------------------------------------------- /software_setup/bin/c4drender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/c4drender -------------------------------------------------------------------------------- /software_setup/bin/clarisse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/clarisse -------------------------------------------------------------------------------- /software_setup/bin/fusion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/fusion -------------------------------------------------------------------------------- /software_setup/bin/fusion.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/fusion.cmd -------------------------------------------------------------------------------- /software_setup/bin/houdini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/houdini -------------------------------------------------------------------------------- /software_setup/bin/hrender_af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/hrender_af -------------------------------------------------------------------------------- /software_setup/bin/htracker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/htracker -------------------------------------------------------------------------------- /software_setup/bin/husk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/husk -------------------------------------------------------------------------------- /software_setup/bin/husk.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/husk.cmd -------------------------------------------------------------------------------- /software_setup/bin/hython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/hython -------------------------------------------------------------------------------- /software_setup/bin/hython.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/hython.cmd -------------------------------------------------------------------------------- /software_setup/bin/mantra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/mantra -------------------------------------------------------------------------------- /software_setup/bin/mantra.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/mantra.cmd -------------------------------------------------------------------------------- /software_setup/bin/maya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/maya -------------------------------------------------------------------------------- /software_setup/bin/maya.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/maya.cmd -------------------------------------------------------------------------------- /software_setup/bin/mayapy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/mayapy -------------------------------------------------------------------------------- /software_setup/bin/mayapy.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/mayapy.cmd -------------------------------------------------------------------------------- /software_setup/bin/mayarender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/mayarender -------------------------------------------------------------------------------- /software_setup/bin/mplay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/mplay -------------------------------------------------------------------------------- /software_setup/bin/mplay.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/mplay.cmd -------------------------------------------------------------------------------- /software_setup/bin/natron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/natron -------------------------------------------------------------------------------- /software_setup/bin/natron.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/natron.cmd -------------------------------------------------------------------------------- /software_setup/bin/nuke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/nuke -------------------------------------------------------------------------------- /software_setup/bin/nuke.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/nuke.cmd -------------------------------------------------------------------------------- /software_setup/bin/xsi.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/bin/xsi.cmd -------------------------------------------------------------------------------- /software_setup/setup__all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/setup__all.cmd -------------------------------------------------------------------------------- /software_setup/setup__all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/setup__all.sh -------------------------------------------------------------------------------- /software_setup/setup_c4d.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/setup_c4d.cmd -------------------------------------------------------------------------------- /software_setup/setup_c4d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/setup_c4d.sh -------------------------------------------------------------------------------- /software_setup/setup_maya.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/setup_maya.cmd -------------------------------------------------------------------------------- /software_setup/setup_maya.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/setup_maya.sh -------------------------------------------------------------------------------- /software_setup/setup_nuke.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/setup_nuke.cmd -------------------------------------------------------------------------------- /software_setup/setup_nuke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/setup_nuke.sh -------------------------------------------------------------------------------- /software_setup/start_3dsmax.cmd: -------------------------------------------------------------------------------- 1 | call %0\..\start__all.cmd 2 | 3 | 3dsmax %* 4 | -------------------------------------------------------------------------------- /software_setup/start__all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/start__all.cmd -------------------------------------------------------------------------------- /software_setup/start__all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/start__all.sh -------------------------------------------------------------------------------- /software_setup/start_afterfx.cmd: -------------------------------------------------------------------------------- 1 | call %0\..\start__all.cmd 2 | 3 | afterfx %* 4 | -------------------------------------------------------------------------------- /software_setup/start_c4d.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/start_c4d.cmd -------------------------------------------------------------------------------- /software_setup/start_clarisse.cmd: -------------------------------------------------------------------------------- 1 | call %0\..\start__all.cmd 2 | 3 | clarisse %* 4 | -------------------------------------------------------------------------------- /software_setup/start_fusion.cmd: -------------------------------------------------------------------------------- 1 | call %0\..\start__all.cmd 2 | 3 | fusion %* 4 | -------------------------------------------------------------------------------- /software_setup/start_houdini.cmd: -------------------------------------------------------------------------------- 1 | call %0\..\start__all.cmd 2 | 3 | houdini %* 4 | -------------------------------------------------------------------------------- /software_setup/start_lightwave.cmd: -------------------------------------------------------------------------------- 1 | call %0\..\start__all.cmd 2 | 3 | lightwave %* 4 | -------------------------------------------------------------------------------- /software_setup/start_maya.cmd: -------------------------------------------------------------------------------- 1 | call %0\..\start__all.cmd 2 | 3 | maya %* 4 | -------------------------------------------------------------------------------- /software_setup/start_natron.cmd: -------------------------------------------------------------------------------- 1 | call %0\..\start__all.cmd 2 | 3 | natron %* 4 | -------------------------------------------------------------------------------- /software_setup/start_nuke.cmd: -------------------------------------------------------------------------------- 1 | call %0\..\start__all.cmd 2 | 3 | nuke %* 4 | -------------------------------------------------------------------------------- /software_setup/start_nuke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/software_setup/start_nuke.sh -------------------------------------------------------------------------------- /software_setup/start_softimage.cmd: -------------------------------------------------------------------------------- 1 | call %0\..\start__all.cmd 2 | 3 | xsi %* 4 | -------------------------------------------------------------------------------- /start.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start.cmd -------------------------------------------------------------------------------- /start.command: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | `dirname "$0"`/start.sh -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start.sh -------------------------------------------------------------------------------- /start/AFANASY/10.afwatch.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/AFANASY/10.afwatch.cmd -------------------------------------------------------------------------------- /start/AFANASY/10.afwatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/AFANASY/10.afwatch.sh -------------------------------------------------------------------------------- /start/AFANASY/50.afstarter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/AFANASY/50.afstarter.sh -------------------------------------------------------------------------------- /start/AFANASY/90.regexp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/AFANASY/90.regexp.cmd -------------------------------------------------------------------------------- /start/AFANASY/90.regexp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/AFANASY/90.regexp.sh -------------------------------------------------------------------------------- /start/AFANASY/99.render.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/AFANASY/99.render.cmd -------------------------------------------------------------------------------- /start/AFANASY/_afcmd.cmd: -------------------------------------------------------------------------------- 1 | call %0\..\_setup.cmd 2 | "%AF_ROOT%\bin\afcmd.exe" %* 3 | -------------------------------------------------------------------------------- /start/AFANASY/_afcmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/AFANASY/_afcmd.sh -------------------------------------------------------------------------------- /start/AFANASY/_afrender.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/AFANASY/_afrender.sh -------------------------------------------------------------------------------- /start/AFANASY/_afserver.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/AFANASY/_afserver.cmd -------------------------------------------------------------------------------- /start/AFANASY/_afserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/AFANASY/_afserver.sh -------------------------------------------------------------------------------- /start/AFANASY/_setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/AFANASY/_setup.cmd -------------------------------------------------------------------------------- /start/AFANASY/_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/AFANASY/_setup.sh -------------------------------------------------------------------------------- /start/MovieMaker/_setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/MovieMaker/_setup.cmd -------------------------------------------------------------------------------- /start/MovieMaker/_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/MovieMaker/_setup.sh -------------------------------------------------------------------------------- /start/MovieMaker/dailies.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/MovieMaker/dailies.cmd -------------------------------------------------------------------------------- /start/MovieMaker/dailies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/MovieMaker/dailies.sh -------------------------------------------------------------------------------- /start/MovieMaker/scanscan.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/MovieMaker/scanscan.cmd -------------------------------------------------------------------------------- /start/MovieMaker/scanscan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/MovieMaker/scanscan.sh -------------------------------------------------------------------------------- /start/Tools/_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/Tools/_setup.sh -------------------------------------------------------------------------------- /start/Tools/browse.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/Tools/browse.cmd -------------------------------------------------------------------------------- /start/Tools/browse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/Tools/browse.sh -------------------------------------------------------------------------------- /start/Tools/terminal.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/Tools/terminal.cmd -------------------------------------------------------------------------------- /start/Tools/terminal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/Tools/terminal.sh -------------------------------------------------------------------------------- /start/_setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/_setup.cmd -------------------------------------------------------------------------------- /start/_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/start/_setup.sh -------------------------------------------------------------------------------- /utilities/arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/arch.py -------------------------------------------------------------------------------- /utilities/arch_x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/arch_x.py -------------------------------------------------------------------------------- /utilities/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/build.sh -------------------------------------------------------------------------------- /utilities/check_pathmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/check_pathmap.py -------------------------------------------------------------------------------- /utilities/checksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/checksum.py -------------------------------------------------------------------------------- /utilities/deletefiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/deletefiles.py -------------------------------------------------------------------------------- /utilities/distribution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/distribution.sh -------------------------------------------------------------------------------- /utilities/documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/documentation.py -------------------------------------------------------------------------------- /utilities/emailsend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/emailsend.py -------------------------------------------------------------------------------- /utilities/ffmpeg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/ffmpeg/.gitignore -------------------------------------------------------------------------------- /utilities/ffmpeg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/ffmpeg/build.sh -------------------------------------------------------------------------------- /utilities/ffmpeg/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/ffmpeg/clear.sh -------------------------------------------------------------------------------- /utilities/ffmpeg/get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/ffmpeg/get.sh -------------------------------------------------------------------------------- /utilities/ffmpeg/get_faac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/ffmpeg/get_faac.sh -------------------------------------------------------------------------------- /utilities/ffmpeg/get_lame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/ffmpeg/get_lame.sh -------------------------------------------------------------------------------- /utilities/ffmpeg/get_nasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/ffmpeg/get_nasm.sh -------------------------------------------------------------------------------- /utilities/ffmpeg/get_x264.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/ffmpeg/get_x264.sh -------------------------------------------------------------------------------- /utilities/ffmpeg/get_yasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/ffmpeg/get_yasm.sh -------------------------------------------------------------------------------- /utilities/forum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/forum.py -------------------------------------------------------------------------------- /utilities/get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/get.sh -------------------------------------------------------------------------------- /utilities/getrevision.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/getrevision.cmd -------------------------------------------------------------------------------- /utilities/getrevision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/getrevision.py -------------------------------------------------------------------------------- /utilities/getrevision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/getrevision.sh -------------------------------------------------------------------------------- /utilities/imagemagick/get.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/imagemagick/get.cmd -------------------------------------------------------------------------------- /utilities/imagemagick/get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/imagemagick/get.sh -------------------------------------------------------------------------------- /utilities/keeper/.gitignore: -------------------------------------------------------------------------------- 1 | *.pem 2 | -------------------------------------------------------------------------------- /utilities/keeper/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/keeper/cmd.py -------------------------------------------------------------------------------- /utilities/keeper/cmdkeeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/keeper/cmdkeeper.py -------------------------------------------------------------------------------- /utilities/keeper/cmdkeeper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/keeper/cmdkeeper.sh -------------------------------------------------------------------------------- /utilities/keeper/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/keeper/info.py -------------------------------------------------------------------------------- /utilities/keeper/keeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/keeper/keeper.py -------------------------------------------------------------------------------- /utilities/keeper/nimby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/keeper/nimby.py -------------------------------------------------------------------------------- /utilities/keeper/refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/keeper/refresh.py -------------------------------------------------------------------------------- /utilities/keeper/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/keeper/render.py -------------------------------------------------------------------------------- /utilities/keeper/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/keeper/server.py -------------------------------------------------------------------------------- /utilities/keeper/software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/keeper/software.py -------------------------------------------------------------------------------- /utilities/keeper/tray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/keeper/tray.py -------------------------------------------------------------------------------- /utilities/launchcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/launchcmd.py -------------------------------------------------------------------------------- /utilities/misc/copyext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/misc/copyext.py -------------------------------------------------------------------------------- /utilities/misc/finddub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/misc/finddub.py -------------------------------------------------------------------------------- /utilities/misc/fixpathes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/misc/fixpathes.py -------------------------------------------------------------------------------- /utilities/openexr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/openexr/.gitignore -------------------------------------------------------------------------------- /utilities/openexr/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/openexr/build.sh -------------------------------------------------------------------------------- /utilities/openexr/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/openexr/clear.sh -------------------------------------------------------------------------------- /utilities/openexr/get.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/openexr/get.cmd -------------------------------------------------------------------------------- /utilities/openexr/get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/openexr/get.sh -------------------------------------------------------------------------------- /utilities/put.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/put.py -------------------------------------------------------------------------------- /utilities/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/python/.gitignore -------------------------------------------------------------------------------- /utilities/python/build_sip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/python/build_sip.sh -------------------------------------------------------------------------------- /utilities/python/get_pyqt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/python/get_pyqt.sh -------------------------------------------------------------------------------- /utilities/python/get_sip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/python/get_sip.sh -------------------------------------------------------------------------------- /utilities/qt/.gitignore: -------------------------------------------------------------------------------- 1 | # Downloads and builds 2 | 3 | 4.* 4 | 5.* 5 | qt-* 6 | -------------------------------------------------------------------------------- /utilities/qt/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/qt/build.cmd -------------------------------------------------------------------------------- /utilities/qt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/qt/build.sh -------------------------------------------------------------------------------- /utilities/qt/get.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/qt/get.cmd -------------------------------------------------------------------------------- /utilities/qt/get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/qt/get.sh -------------------------------------------------------------------------------- /utilities/regexp/regexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/regexp/regexp.py -------------------------------------------------------------------------------- /utilities/release/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/release/.gitignore -------------------------------------------------------------------------------- /utilities/release/archives/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore processed folders and archives: 2 | 3 | cgru* 4 | -------------------------------------------------------------------------------- /utilities/release/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/release/check.sh -------------------------------------------------------------------------------- /utilities/release/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/release/clear.sh -------------------------------------------------------------------------------- /utilities/release/depends.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/release/depends.sh -------------------------------------------------------------------------------- /utilities/release/export.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/release/export.cmd -------------------------------------------------------------------------------- /utilities/release/export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/release/export.sh -------------------------------------------------------------------------------- /utilities/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/rules.py -------------------------------------------------------------------------------- /utilities/showdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/showdoc.py -------------------------------------------------------------------------------- /utilities/wolwake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGRU/cgru/HEAD/utilities/wolwake.py -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 3.4.0 2 | --------------------------------------------------------------------------------