{"id":28759922,"url":"https://github.com/codevise/pageflow-panorama","last_synced_at":"2026-03-05T16:43:51.401Z","repository":{"id":18880839,"uuid":"22098309","full_name":"codevise/pageflow-panorama","owner":"codevise","description":"Page type for displaying 360 degree panoramas.","archived":false,"fork":false,"pushed_at":"2024-01-15T05:53:02.000Z","size":128,"stargazers_count":1,"open_issues_count":0,"forks_count":6,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-07-28T07:37:29.479Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codevise.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2014-07-22T09:28:37.000Z","updated_at":"2024-01-16T15:46:20.000Z","dependencies_parsed_at":"2024-01-15T06:51:46.673Z","dependency_job_id":"114b9cc9-cd36-4e67-a9b3-78cb46e58d7f","html_url":"https://github.com/codevise/pageflow-panorama","commit_stats":{"total_commits":101,"total_committers":6,"mean_commits":"16.833333333333332","dds":"0.16831683168316836","last_synced_commit":"7c044ea0ea3b17cec796702f8e60d77325d6a4d8"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/codevise/pageflow-panorama","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codevise%2Fpageflow-panorama","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codevise%2Fpageflow-panorama/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codevise%2Fpageflow-panorama/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codevise%2Fpageflow-panorama/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codevise","download_url":"https://codeload.github.com/codevise/pageflow-panorama/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codevise%2Fpageflow-panorama/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274268373,"owners_count":25253390,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-09T02:00:10.223Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-17T05:42:27.787Z","updated_at":"2026-03-05T16:43:51.366Z","avatar_url":"https://github.com/codevise.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pageflow Panorama\n\n[![Gem Version](https://badge.fury.io/rb/pageflow-panorama.svg)](http://badge.fury.io/rb/pageflow-panorama)\n[![Build Status](https://github.com/codevise/pageflow-panorama/workflows/tests/badge.svg)](https://github.com/codevise/pageflow-panorama/actions)\n\nPage type showing 360° panoramas in embedded iframes. Currently\nsupported are panoramas by palmsfilm.com, panogate.com and KRPano via\nupload in the editor.\n\n## Installation\n\nAdd pageflow-panorama to your application's Gemfile:\n\n    # Gemfile\n    gem 'pageflow-panorama'\n\nand run `bundle install`.\n\nRegister the page type:\n\n    # config/initializers/pageflow.rb\n    Pageflow.configure do |config|\n      config.page_types.register(Pageflow::Panorama.page_type)\n    end\n\nInclude javascripts and stylesheets:\n\n    # app/assets/javascripts/pageflow/application.js\n    //= require pageflow/panorama\n\n    # app/assets/javascripts/pageflow/editor.js\n    //= require pageflow/panorama/editor\n\n    # app/assets/stylesheets/pageflow/application.scss\n    @import \"pageflow/panorama\";\n\n    # app/assets/stylesheets/pageflow/editor.scss\n    @import \"pageflow/panorama/editor\";\n\n    # app/assets/stylesheets/pageflow/themes/default.scss\n    @import \"pageflow/panorama/themes/default\";\n\nInstall and run migrations:\n\n    $ rake pageflow_panorama:install:migrations\n    $ rake db:migrate\n\n### Create Proxies for the Panorama Providers:\n\nTo circumvent the same-origin policy, a proxy from the domain that\nserves pageflow to the domain of the panorma-providers has to be\nconfigured.\n\nExample for Nginx:\nCopy `config/pageflow-panorama-proxies.conf.example` to your Nginx config\ndirectory, for example `/etc/nginx/pageflow-panorama-proxies.conf`\nand include it in you pageflow config file:\n\n     include /etc/nginx/pageflow-panorama-proxies.conf\n\n### Configure the Supported Panorama Providers\n\nIf you support both palmfilms and panogate just copy\n`config/pageflow_panorama.rb.example` to `config/initializers/pageflow_panorama.rb`\nin your app. This sets the `base_path` to correspond with the proxy configuration above.\n\nRestart the application server.\n\n## Troubleshooting\n\nIf you run into problems while installing the page type, please also\nrefer to the\n[Troubleshooting](https://github.com/codevise/pageflow/wiki/Troubleshooting)\nwiki page in the\n[Pageflow repository](https://github.com/codevise/pageflow). If that\ndoesn't help, consider\n[filing an issue](https://github.com/codevise/pageflow-panorama/issues).\n\n## Contributing Locales\n\nEdit the translations directly on the\n[pageflow-panorama](http://www.localeapp.com/projects/public?search=tf/pageflow-panorama)\nlocale project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodevise%2Fpageflow-panorama","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodevise%2Fpageflow-panorama","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodevise%2Fpageflow-panorama/lists"}