├── README.txt ├── drupal-org.make ├── modules └── custom │ ├── video_moderation │ ├── video_moderation.features.inc │ ├── video_moderation.features.user_permission.inc │ ├── video_moderation.features.user_role.inc │ ├── video_moderation.info │ ├── video_moderation.module │ └── video_moderation.strongarm.inc │ ├── video_user │ ├── video_user.context.inc │ ├── video_user.features.field.inc │ ├── video_user.features.inc │ ├── video_user.features.menu_custom.inc │ ├── video_user.features.menu_links.inc │ ├── video_user.features.taxonomy.inc │ ├── video_user.field_group.inc │ ├── video_user.info │ ├── video_user.module │ └── video_user.views_default.inc │ └── video_video │ ├── video_video.context.inc │ ├── video_video.features.field.inc │ ├── video_video.features.inc │ ├── video_video.features.menu_custom.inc │ ├── video_video.features.menu_links.inc │ ├── video_video.features.taxonomy.inc │ ├── video_video.features.user_permission.inc │ ├── video_video.field_group.inc │ ├── video_video.info │ ├── video_video.jw_player_presets.inc │ ├── video_video.module │ ├── video_video.pages_default.inc │ ├── video_video.quicktabs.inc │ ├── video_video.rules_defaults.inc │ ├── video_video.strongarm.inc │ └── video_video.views_default.inc ├── octopus_video.info ├── octopus_video.install ├── octopus_video.profile └── themes └── octopus_theme ├── css ├── README.txt ├── global.css ├── octopus_theme-alpha-default-narrow.css ├── octopus_theme-alpha-default-normal.css ├── octopus_theme-alpha-default-wide.css ├── octopus_theme-alpha-default.css └── reset.css ├── favicon.ico ├── images ├── about_octopus.png ├── black-bullet.png ├── blockquote_bottom.png ├── blockquote_top.png ├── bullet.jpg ├── search-icon.png └── tabs-border.png ├── js └── custom.js ├── logo.png ├── octopus_theme.info ├── preprocess └── README.txt ├── process └── README.txt ├── screenshot.png └── templates └── README.txt /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/README.txt -------------------------------------------------------------------------------- /drupal-org.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/drupal-org.make -------------------------------------------------------------------------------- /modules/custom/video_moderation/video_moderation.features.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_moderation/video_moderation.features.inc -------------------------------------------------------------------------------- /modules/custom/video_moderation/video_moderation.features.user_permission.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_moderation/video_moderation.features.user_permission.inc -------------------------------------------------------------------------------- /modules/custom/video_moderation/video_moderation.features.user_role.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_moderation/video_moderation.features.user_role.inc -------------------------------------------------------------------------------- /modules/custom/video_moderation/video_moderation.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_moderation/video_moderation.info -------------------------------------------------------------------------------- /modules/custom/video_moderation/video_moderation.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_moderation/video_moderation.module -------------------------------------------------------------------------------- /modules/custom/video_moderation/video_moderation.strongarm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_moderation/video_moderation.strongarm.inc -------------------------------------------------------------------------------- /modules/custom/video_user/video_user.context.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_user/video_user.context.inc -------------------------------------------------------------------------------- /modules/custom/video_user/video_user.features.field.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_user/video_user.features.field.inc -------------------------------------------------------------------------------- /modules/custom/video_user/video_user.features.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_user/video_user.features.inc -------------------------------------------------------------------------------- /modules/custom/video_user/video_user.features.menu_custom.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_user/video_user.features.menu_custom.inc -------------------------------------------------------------------------------- /modules/custom/video_user/video_user.features.menu_links.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_user/video_user.features.menu_links.inc -------------------------------------------------------------------------------- /modules/custom/video_user/video_user.features.taxonomy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_user/video_user.features.taxonomy.inc -------------------------------------------------------------------------------- /modules/custom/video_user/video_user.field_group.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_user/video_user.field_group.inc -------------------------------------------------------------------------------- /modules/custom/video_user/video_user.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_user/video_user.info -------------------------------------------------------------------------------- /modules/custom/video_user/video_user.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_user/video_user.module -------------------------------------------------------------------------------- /modules/custom/video_user/video_user.views_default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_user/video_user.views_default.inc -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.context.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.context.inc -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.features.field.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.features.field.inc -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.features.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.features.inc -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.features.menu_custom.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.features.menu_custom.inc -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.features.menu_links.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.features.menu_links.inc -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.features.taxonomy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.features.taxonomy.inc -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.features.user_permission.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.features.user_permission.inc -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.field_group.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.field_group.inc -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.info -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.jw_player_presets.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.jw_player_presets.inc -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.module -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.pages_default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.pages_default.inc -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.quicktabs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.quicktabs.inc -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.rules_defaults.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.rules_defaults.inc -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.strongarm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.strongarm.inc -------------------------------------------------------------------------------- /modules/custom/video_video/video_video.views_default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/modules/custom/video_video/video_video.views_default.inc -------------------------------------------------------------------------------- /octopus_video.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/octopus_video.info -------------------------------------------------------------------------------- /octopus_video.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/octopus_video.install -------------------------------------------------------------------------------- /octopus_video.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/octopus_video.profile -------------------------------------------------------------------------------- /themes/octopus_theme/css/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/css/README.txt -------------------------------------------------------------------------------- /themes/octopus_theme/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/css/global.css -------------------------------------------------------------------------------- /themes/octopus_theme/css/octopus_theme-alpha-default-narrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/css/octopus_theme-alpha-default-narrow.css -------------------------------------------------------------------------------- /themes/octopus_theme/css/octopus_theme-alpha-default-normal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/css/octopus_theme-alpha-default-normal.css -------------------------------------------------------------------------------- /themes/octopus_theme/css/octopus_theme-alpha-default-wide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/css/octopus_theme-alpha-default-wide.css -------------------------------------------------------------------------------- /themes/octopus_theme/css/octopus_theme-alpha-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/css/octopus_theme-alpha-default.css -------------------------------------------------------------------------------- /themes/octopus_theme/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/css/reset.css -------------------------------------------------------------------------------- /themes/octopus_theme/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/favicon.ico -------------------------------------------------------------------------------- /themes/octopus_theme/images/about_octopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/images/about_octopus.png -------------------------------------------------------------------------------- /themes/octopus_theme/images/black-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/images/black-bullet.png -------------------------------------------------------------------------------- /themes/octopus_theme/images/blockquote_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/images/blockquote_bottom.png -------------------------------------------------------------------------------- /themes/octopus_theme/images/blockquote_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/images/blockquote_top.png -------------------------------------------------------------------------------- /themes/octopus_theme/images/bullet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/images/bullet.jpg -------------------------------------------------------------------------------- /themes/octopus_theme/images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/images/search-icon.png -------------------------------------------------------------------------------- /themes/octopus_theme/images/tabs-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/images/tabs-border.png -------------------------------------------------------------------------------- /themes/octopus_theme/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/js/custom.js -------------------------------------------------------------------------------- /themes/octopus_theme/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/logo.png -------------------------------------------------------------------------------- /themes/octopus_theme/octopus_theme.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/octopus_theme.info -------------------------------------------------------------------------------- /themes/octopus_theme/preprocess/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/preprocess/README.txt -------------------------------------------------------------------------------- /themes/octopus_theme/process/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/process/README.txt -------------------------------------------------------------------------------- /themes/octopus_theme/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/screenshot.png -------------------------------------------------------------------------------- /themes/octopus_theme/templates/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heshanlk/OctopusVideo/HEAD/themes/octopus_theme/templates/README.txt --------------------------------------------------------------------------------