├── .gitignore ├── .gitmodules ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── Vagrantfile ├── app.json ├── apptools ├── __init__.py └── addr2lines.py ├── auth ├── __init__.py ├── models.py ├── pebble.py ├── templates │ └── registration │ │ ├── base.html │ │ ├── login.html │ │ ├── merge_account.html │ │ ├── password_reset_complete.html │ │ ├── password_reset_confirm.html │ │ ├── password_reset_done.html │ │ ├── password_reset_email.html │ │ ├── password_reset_form.html │ │ └── registration_form.html ├── tests.py ├── urls.py └── views.py ├── bin └── post_compile ├── bootstrap.sh ├── c-preload ├── .gitignore ├── Makefile └── preload.c ├── cloudpebble ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── completion-certs.crt ├── docker_start.sh ├── fabfile.py ├── gunicorn.py ├── ide ├── __init__.py ├── admin.py ├── api │ ├── __init__.py │ ├── git.py │ ├── npm.py │ ├── phone.py │ ├── project.py │ ├── qemu.py │ ├── resource.py │ ├── source.py │ ├── user.py │ └── ycm.py ├── forms.py ├── git.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto__add_usersettings.py │ ├── 0003_auto__add_field_resourceidentifier_tracking.py │ ├── 0004_auto__add_usergithub.py │ ├── 0005_auto__add_project_github_fields.py │ ├── 0006_auto__add_field_project_github_hook.py │ ├── 0007_auto__add_field_project_optimisation.py │ ├── 0008_auto__add_field_buildresult_sizes.py │ ├── 0009_auto__add_field_project_sdk_version__add_field_project_app_uuid__add_f.py │ ├── 0010_auto__add_field_project_app_keys.py │ ├── 0011_auto__add_field_resourcefile_is_menu_icon.py │ ├── 0012_auto__add_field_usersettings_accepted_terms.py │ ├── 0013_auto__chg_field_buildresult_uuid__chg_field_usergithub_nonce__chg_fiel.py │ ├── 0014_auto__add_field_project_app_jshint.py │ ├── 0015_auto__add_field_project_github_branch.py │ ├── 0016_auto__add_field_usersettings_use_spaces__add_field_usersettings_tab_wi.py │ ├── 0017_auto__add_field_sourcefile_last_modified.py │ ├── 0018_auto__add_field_project_project_type.py │ ├── 0019_auto__add_field_usersettings_whats_new.py │ ├── 0020_auto__del_unique_project_owner_name.py │ ├── 0021_auto__del_field_project_sdk_version__del_field_project_version_def_nam.py │ ├── 0022_auto__add_field_sourcefile_target.py │ ├── 0023_auto__add_field_buildresult_worker_size.py │ ├── 0024_auto__add_field_resourceidentifier_compatibility.py │ ├── 0025_auto__add_field_project_sdk_version.py │ ├── 0026_auto__add_buildsize.py │ ├── 0027_migrate_build_sizes_to_table.py │ ├── 0028_auto__del_field_buildresult_worker_size__del_field_buildresult_binary_.py │ ├── 0029_auto__add_field_project_app_platforms.py │ ├── 0030_auto__add_resourcevariant__add_unique_resourcevariant_resource_file_va.py │ ├── 0031_create_resource_variants.py │ ├── 0032_auto__del_field_project_app_version_code.py │ ├── 0033_migrate_pebblejs_to_sdk3.py │ ├── 0034_auto__add_field_sourcefile_folded_lines.py │ ├── 0035_auto__add_field_project_app_is_hidden__add_field_project_app_is_shown_.py │ ├── 0035_auto__add_field_resourcefile_target_platforms.py │ ├── 0036_auto__add_field_resourcevariant_tags__chg_field_resourcevariant_varian.py │ ├── 0037_convert_suffixes_to_tags.py │ ├── 0038_auto__del_field_resourcevariant_variant__chg_field_resourcevariant_tag.py │ ├── 0039_auto__add_field_resourceidentifier_target_platforms.py │ ├── 0040_fix_target_platforms.py │ ├── 0041_auto__del_field_resourcefile_target_platforms__del_unique_resourceiden.py │ ├── 0042_auto__add_field_resourceidentifier_memory_format__add_field_resourceid.py │ ├── 0043_convert_resource_kinds_to_bitmap.py │ ├── 0044_auto__add_field_project_app_modern_multi_js.py │ ├── 0045_migrate_pebblejs_add_platforms.py │ ├── 0046_auto__add_dependency.py │ ├── 0047_remove_pebblejs_dependencies.py │ ├── 0048_create_pkjs_target.py │ ├── 0049_add_project_dependencies.py │ ├── 0050_auto__del_unique_sourcefile_project_file_name__add_unique_sourcefile_p.py │ ├── 0051_auto__chg_field_resourceidentifier_target_platforms.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── build.py │ ├── dependency.py │ ├── files.py │ ├── meta.py │ ├── project.py │ ├── s3file.py │ ├── textfile.py │ └── user.py ├── run_tests.py ├── static │ └── ide │ │ ├── css │ │ ├── base.css │ │ ├── codemirror-default.css │ │ ├── ib.css │ │ ├── ide.css │ │ ├── mobile.css │ │ ├── project-list.css │ │ └── settings.css │ │ ├── documentation.json │ │ ├── external │ │ ├── codemirror.hint.js │ │ ├── uuid.js │ │ └── vnc │ │ │ ├── LICENSE │ │ │ └── rfb.js │ │ ├── img │ │ ├── background-logo.png │ │ ├── boot-aplite.png │ │ ├── boot-basalt.png │ │ ├── boot-chalk.png │ │ ├── boot-emery.png │ │ ├── configure.png │ │ ├── darkspinner.gif │ │ ├── delete.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── fullscreen_close.png │ │ ├── fullscreen_open.png │ │ ├── help.png │ │ ├── ib.png │ │ ├── pebbles │ │ │ ├── bianca-black.png │ │ │ ├── bianca-silver.png │ │ │ ├── black-20mm-hole.png │ │ │ ├── bobby-black.png │ │ │ ├── bobby-gold.png │ │ │ ├── bobby-silver.png │ │ │ ├── snowy-black.png │ │ │ ├── snowy-red.png │ │ │ ├── snowy-white.png │ │ │ ├── spalding-14mm-black.png │ │ │ ├── spalding-14mm-rose-gold.png │ │ │ ├── spalding-14mm-silver.png │ │ │ ├── spalding-20mm-black.png │ │ │ ├── spalding-20mm-silver.png │ │ │ ├── tintin-black.png │ │ │ ├── tintin-blue.png │ │ │ ├── tintin-green.png │ │ │ ├── tintin-grey.png │ │ │ ├── tintin-orange.png │ │ │ ├── tintin-pink.png │ │ │ ├── tintin-red.png │ │ │ └── tintin-white.png │ │ ├── power.png │ │ ├── reload.png │ │ ├── rename.png │ │ ├── run.png │ │ ├── save.png │ │ ├── spinner.gif │ │ ├── status │ │ │ ├── error.png │ │ │ ├── failing.png │ │ │ └── passing.png │ │ └── zip.png │ │ ├── js │ │ ├── KVtable.js │ │ ├── analytics.js │ │ ├── autocomplete.js │ │ ├── cloudpebble.js │ │ ├── codefolds.js │ │ ├── compile.js │ │ ├── crash_handler.js │ │ ├── csrf.js │ │ ├── dependencies.js │ │ ├── dither.js │ │ ├── documentation.js │ │ ├── editor.js │ │ ├── emulator.js │ │ ├── fuzzyprompt.js │ │ ├── gist_import.js │ │ ├── github.js │ │ ├── ib │ │ │ ├── canvas.js │ │ │ ├── codegen.js │ │ │ ├── codeparser.js │ │ │ ├── ib.js │ │ │ ├── layer.js │ │ │ ├── layer_list.js │ │ │ ├── layers │ │ │ │ ├── actionbarlayer.js │ │ │ │ ├── bitmaplayer.js │ │ │ │ ├── inverterlayer.js │ │ │ │ ├── menulayer.js │ │ │ │ └── textlayer.js │ │ │ ├── properties.js │ │ │ ├── property_view.js │ │ │ ├── registry.js │ │ │ ├── resizer.js │ │ │ ├── resource.js │ │ │ ├── resource_manager.js │ │ │ ├── toolkit.js │ │ │ └── utils.js │ │ ├── json_parse.js │ │ ├── libpebble │ │ │ ├── libpebble.js │ │ │ ├── mixedsocket.js │ │ │ ├── proxysocket.js │ │ │ └── websocket.js │ │ ├── live_settings_form.js │ │ ├── new_owner.js │ │ ├── pebble.js │ │ ├── project_list.js │ │ ├── qemu.js │ │ ├── radix.js │ │ ├── resources.js │ │ ├── settings.js │ │ ├── sidebar.js │ │ ├── syntax.js │ │ ├── textext_tagger.js │ │ ├── timeline.js │ │ ├── whats_new.js │ │ └── ycm.js │ │ └── svg │ │ └── filters.svg ├── tasks │ ├── __init__.py │ ├── archive.py │ ├── build.py │ ├── gist.py │ ├── git.py │ └── td_task.py ├── templates │ └── ide │ │ ├── gist-import.html │ │ ├── index.html │ │ ├── new-owner.html │ │ ├── project.html │ │ ├── project │ │ ├── compile.html │ │ ├── dependencies.html │ │ ├── github.html │ │ ├── resource.html │ │ ├── settings.html │ │ ├── timeline.html │ │ └── ui-editor.html │ │ ├── qemu-config.html │ │ ├── qemu-enter-token.html │ │ ├── qemu-sensors.html │ │ └── settings.html ├── tests │ ├── __init__.py │ ├── test_compile.py │ ├── test_create_archive.py │ ├── test_find_project_root.py │ ├── test_gist.py │ ├── test_git.py │ ├── test_import_archive.py │ ├── test_import_export.py │ ├── test_library.zip │ ├── test_manifest_generation.py │ ├── test_project_assembly.py │ ├── test_project_model.py │ ├── test_project_version.py │ └── test_source_api.py ├── urls.py ├── utils │ ├── __init__.py │ ├── cloudpebble_test.py │ ├── git.py │ ├── mailinglist.py │ ├── project.py │ ├── regexes.py │ ├── sdk │ │ ├── __init__.py │ │ ├── manifest.py │ │ ├── project_assembly.py │ │ └── sdk_scripts.py │ ├── version.py │ └── whatsnew.py └── views │ ├── __init__.py │ ├── index.py │ ├── project.py │ └── settings.py ├── locale ├── .empty ├── README.md ├── de │ └── LC_MESSAGES │ │ ├── django.po │ │ └── djangojs.po ├── es │ └── LC_MESSAGES │ │ ├── django.po │ │ └── djangojs.po ├── fr │ └── LC_MESSAGES │ │ ├── django.po │ │ └── djangojs.po ├── zh_CN │ └── LC_MESSAGES │ │ ├── django.po │ │ └── djangojs.po └── zh_TW │ └── LC_MESSAGES │ ├── django.po │ └── djangojs.po ├── manage.py ├── package.json ├── qr ├── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── requirements.txt ├── root ├── __init__.py ├── models.py ├── static │ ├── common │ │ ├── css │ │ │ ├── common.css │ │ │ └── progress.css │ │ ├── fonts │ │ │ └── fonts.css │ │ ├── img │ │ │ ├── checkbox-unchecked.png │ │ │ ├── checkbox.png │ │ │ ├── dropdown.png │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ ├── small-checkbox-unchecked.png │ │ │ └── small-checkbox.png │ │ └── js │ │ │ ├── ajax.js │ │ │ └── modal.js │ └── root │ │ ├── css │ │ └── splash.css │ │ ├── images │ │ ├── browser.png │ │ ├── cloudpebble.png │ │ ├── clouds.png │ │ ├── cloudy.png │ │ ├── json.png │ │ ├── pebble.png │ │ └── unfinished.png │ │ └── js │ │ └── splash.js ├── templates │ ├── common │ │ ├── base-narrow.html │ │ └── base.html │ └── root │ │ └── index.html ├── tests.py ├── urls.py └── views.py ├── runtime.txt ├── tests ├── __init__.py └── test_filter_dict.py ├── translators.md └── utils ├── __init__.py ├── fakes.py ├── filter_dict.py ├── jsonview.py ├── redis_helper.py ├── s3.py └── td_helper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/app.json -------------------------------------------------------------------------------- /apptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/apptools/__init__.py -------------------------------------------------------------------------------- /apptools/addr2lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/apptools/addr2lines.py -------------------------------------------------------------------------------- /auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/auth/models.py -------------------------------------------------------------------------------- /auth/pebble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/auth/pebble.py -------------------------------------------------------------------------------- /auth/templates/registration/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/auth/templates/registration/base.html -------------------------------------------------------------------------------- /auth/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/auth/templates/registration/login.html -------------------------------------------------------------------------------- /auth/templates/registration/merge_account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/auth/templates/registration/merge_account.html -------------------------------------------------------------------------------- /auth/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/auth/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /auth/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/auth/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /auth/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/auth/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /auth/templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/auth/templates/registration/password_reset_email.html -------------------------------------------------------------------------------- /auth/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/auth/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /auth/templates/registration/registration_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/auth/templates/registration/registration_form.html -------------------------------------------------------------------------------- /auth/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/auth/tests.py -------------------------------------------------------------------------------- /auth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/auth/urls.py -------------------------------------------------------------------------------- /auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/auth/views.py -------------------------------------------------------------------------------- /bin/post_compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/bin/post_compile -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /c-preload/.gitignore: -------------------------------------------------------------------------------- 1 | libpreload.so 2 | -------------------------------------------------------------------------------- /c-preload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/c-preload/Makefile -------------------------------------------------------------------------------- /c-preload/preload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/c-preload/preload.c -------------------------------------------------------------------------------- /cloudpebble/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudpebble/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/cloudpebble/settings.py -------------------------------------------------------------------------------- /cloudpebble/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/cloudpebble/urls.py -------------------------------------------------------------------------------- /cloudpebble/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/cloudpebble/wsgi.py -------------------------------------------------------------------------------- /completion-certs.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/completion-certs.crt -------------------------------------------------------------------------------- /docker_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/docker_start.sh -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/fabfile.py -------------------------------------------------------------------------------- /gunicorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/gunicorn.py -------------------------------------------------------------------------------- /ide/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ide/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/admin.py -------------------------------------------------------------------------------- /ide/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/api/__init__.py -------------------------------------------------------------------------------- /ide/api/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/api/git.py -------------------------------------------------------------------------------- /ide/api/npm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/api/npm.py -------------------------------------------------------------------------------- /ide/api/phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/api/phone.py -------------------------------------------------------------------------------- /ide/api/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/api/project.py -------------------------------------------------------------------------------- /ide/api/qemu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/api/qemu.py -------------------------------------------------------------------------------- /ide/api/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/api/resource.py -------------------------------------------------------------------------------- /ide/api/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/api/source.py -------------------------------------------------------------------------------- /ide/api/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/api/user.py -------------------------------------------------------------------------------- /ide/api/ycm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/api/ycm.py -------------------------------------------------------------------------------- /ide/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/forms.py -------------------------------------------------------------------------------- /ide/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/git.py -------------------------------------------------------------------------------- /ide/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0001_initial.py -------------------------------------------------------------------------------- /ide/migrations/0002_auto__add_usersettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0002_auto__add_usersettings.py -------------------------------------------------------------------------------- /ide/migrations/0003_auto__add_field_resourceidentifier_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0003_auto__add_field_resourceidentifier_tracking.py -------------------------------------------------------------------------------- /ide/migrations/0004_auto__add_usergithub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0004_auto__add_usergithub.py -------------------------------------------------------------------------------- /ide/migrations/0005_auto__add_project_github_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0005_auto__add_project_github_fields.py -------------------------------------------------------------------------------- /ide/migrations/0006_auto__add_field_project_github_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0006_auto__add_field_project_github_hook.py -------------------------------------------------------------------------------- /ide/migrations/0007_auto__add_field_project_optimisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0007_auto__add_field_project_optimisation.py -------------------------------------------------------------------------------- /ide/migrations/0008_auto__add_field_buildresult_sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0008_auto__add_field_buildresult_sizes.py -------------------------------------------------------------------------------- /ide/migrations/0009_auto__add_field_project_sdk_version__add_field_project_app_uuid__add_f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0009_auto__add_field_project_sdk_version__add_field_project_app_uuid__add_f.py -------------------------------------------------------------------------------- /ide/migrations/0010_auto__add_field_project_app_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0010_auto__add_field_project_app_keys.py -------------------------------------------------------------------------------- /ide/migrations/0011_auto__add_field_resourcefile_is_menu_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0011_auto__add_field_resourcefile_is_menu_icon.py -------------------------------------------------------------------------------- /ide/migrations/0012_auto__add_field_usersettings_accepted_terms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0012_auto__add_field_usersettings_accepted_terms.py -------------------------------------------------------------------------------- /ide/migrations/0013_auto__chg_field_buildresult_uuid__chg_field_usergithub_nonce__chg_fiel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0013_auto__chg_field_buildresult_uuid__chg_field_usergithub_nonce__chg_fiel.py -------------------------------------------------------------------------------- /ide/migrations/0014_auto__add_field_project_app_jshint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0014_auto__add_field_project_app_jshint.py -------------------------------------------------------------------------------- /ide/migrations/0015_auto__add_field_project_github_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0015_auto__add_field_project_github_branch.py -------------------------------------------------------------------------------- /ide/migrations/0016_auto__add_field_usersettings_use_spaces__add_field_usersettings_tab_wi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0016_auto__add_field_usersettings_use_spaces__add_field_usersettings_tab_wi.py -------------------------------------------------------------------------------- /ide/migrations/0017_auto__add_field_sourcefile_last_modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0017_auto__add_field_sourcefile_last_modified.py -------------------------------------------------------------------------------- /ide/migrations/0018_auto__add_field_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0018_auto__add_field_project_project_type.py -------------------------------------------------------------------------------- /ide/migrations/0019_auto__add_field_usersettings_whats_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0019_auto__add_field_usersettings_whats_new.py -------------------------------------------------------------------------------- /ide/migrations/0020_auto__del_unique_project_owner_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0020_auto__del_unique_project_owner_name.py -------------------------------------------------------------------------------- /ide/migrations/0021_auto__del_field_project_sdk_version__del_field_project_version_def_nam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0021_auto__del_field_project_sdk_version__del_field_project_version_def_nam.py -------------------------------------------------------------------------------- /ide/migrations/0022_auto__add_field_sourcefile_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0022_auto__add_field_sourcefile_target.py -------------------------------------------------------------------------------- /ide/migrations/0023_auto__add_field_buildresult_worker_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0023_auto__add_field_buildresult_worker_size.py -------------------------------------------------------------------------------- /ide/migrations/0024_auto__add_field_resourceidentifier_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0024_auto__add_field_resourceidentifier_compatibility.py -------------------------------------------------------------------------------- /ide/migrations/0025_auto__add_field_project_sdk_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0025_auto__add_field_project_sdk_version.py -------------------------------------------------------------------------------- /ide/migrations/0026_auto__add_buildsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0026_auto__add_buildsize.py -------------------------------------------------------------------------------- /ide/migrations/0027_migrate_build_sizes_to_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0027_migrate_build_sizes_to_table.py -------------------------------------------------------------------------------- /ide/migrations/0028_auto__del_field_buildresult_worker_size__del_field_buildresult_binary_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0028_auto__del_field_buildresult_worker_size__del_field_buildresult_binary_.py -------------------------------------------------------------------------------- /ide/migrations/0029_auto__add_field_project_app_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0029_auto__add_field_project_app_platforms.py -------------------------------------------------------------------------------- /ide/migrations/0030_auto__add_resourcevariant__add_unique_resourcevariant_resource_file_va.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0030_auto__add_resourcevariant__add_unique_resourcevariant_resource_file_va.py -------------------------------------------------------------------------------- /ide/migrations/0031_create_resource_variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0031_create_resource_variants.py -------------------------------------------------------------------------------- /ide/migrations/0032_auto__del_field_project_app_version_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0032_auto__del_field_project_app_version_code.py -------------------------------------------------------------------------------- /ide/migrations/0033_migrate_pebblejs_to_sdk3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0033_migrate_pebblejs_to_sdk3.py -------------------------------------------------------------------------------- /ide/migrations/0034_auto__add_field_sourcefile_folded_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0034_auto__add_field_sourcefile_folded_lines.py -------------------------------------------------------------------------------- /ide/migrations/0035_auto__add_field_project_app_is_hidden__add_field_project_app_is_shown_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0035_auto__add_field_project_app_is_hidden__add_field_project_app_is_shown_.py -------------------------------------------------------------------------------- /ide/migrations/0035_auto__add_field_resourcefile_target_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0035_auto__add_field_resourcefile_target_platforms.py -------------------------------------------------------------------------------- /ide/migrations/0036_auto__add_field_resourcevariant_tags__chg_field_resourcevariant_varian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0036_auto__add_field_resourcevariant_tags__chg_field_resourcevariant_varian.py -------------------------------------------------------------------------------- /ide/migrations/0037_convert_suffixes_to_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0037_convert_suffixes_to_tags.py -------------------------------------------------------------------------------- /ide/migrations/0038_auto__del_field_resourcevariant_variant__chg_field_resourcevariant_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0038_auto__del_field_resourcevariant_variant__chg_field_resourcevariant_tag.py -------------------------------------------------------------------------------- /ide/migrations/0039_auto__add_field_resourceidentifier_target_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0039_auto__add_field_resourceidentifier_target_platforms.py -------------------------------------------------------------------------------- /ide/migrations/0040_fix_target_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0040_fix_target_platforms.py -------------------------------------------------------------------------------- /ide/migrations/0041_auto__del_field_resourcefile_target_platforms__del_unique_resourceiden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0041_auto__del_field_resourcefile_target_platforms__del_unique_resourceiden.py -------------------------------------------------------------------------------- /ide/migrations/0042_auto__add_field_resourceidentifier_memory_format__add_field_resourceid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0042_auto__add_field_resourceidentifier_memory_format__add_field_resourceid.py -------------------------------------------------------------------------------- /ide/migrations/0043_convert_resource_kinds_to_bitmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0043_convert_resource_kinds_to_bitmap.py -------------------------------------------------------------------------------- /ide/migrations/0044_auto__add_field_project_app_modern_multi_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0044_auto__add_field_project_app_modern_multi_js.py -------------------------------------------------------------------------------- /ide/migrations/0045_migrate_pebblejs_add_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0045_migrate_pebblejs_add_platforms.py -------------------------------------------------------------------------------- /ide/migrations/0046_auto__add_dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0046_auto__add_dependency.py -------------------------------------------------------------------------------- /ide/migrations/0047_remove_pebblejs_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0047_remove_pebblejs_dependencies.py -------------------------------------------------------------------------------- /ide/migrations/0048_create_pkjs_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0048_create_pkjs_target.py -------------------------------------------------------------------------------- /ide/migrations/0049_add_project_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0049_add_project_dependencies.py -------------------------------------------------------------------------------- /ide/migrations/0050_auto__del_unique_sourcefile_project_file_name__add_unique_sourcefile_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0050_auto__del_unique_sourcefile_project_file_name__add_unique_sourcefile_p.py -------------------------------------------------------------------------------- /ide/migrations/0051_auto__chg_field_resourceidentifier_target_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/migrations/0051_auto__chg_field_resourceidentifier_target_platforms.py -------------------------------------------------------------------------------- /ide/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ide/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/models/__init__.py -------------------------------------------------------------------------------- /ide/models/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/models/build.py -------------------------------------------------------------------------------- /ide/models/dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/models/dependency.py -------------------------------------------------------------------------------- /ide/models/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/models/files.py -------------------------------------------------------------------------------- /ide/models/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/models/meta.py -------------------------------------------------------------------------------- /ide/models/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/models/project.py -------------------------------------------------------------------------------- /ide/models/s3file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/models/s3file.py -------------------------------------------------------------------------------- /ide/models/textfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/models/textfile.py -------------------------------------------------------------------------------- /ide/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/models/user.py -------------------------------------------------------------------------------- /ide/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/run_tests.py -------------------------------------------------------------------------------- /ide/static/ide/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/css/base.css -------------------------------------------------------------------------------- /ide/static/ide/css/codemirror-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/css/codemirror-default.css -------------------------------------------------------------------------------- /ide/static/ide/css/ib.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/css/ib.css -------------------------------------------------------------------------------- /ide/static/ide/css/ide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/css/ide.css -------------------------------------------------------------------------------- /ide/static/ide/css/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/css/mobile.css -------------------------------------------------------------------------------- /ide/static/ide/css/project-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/css/project-list.css -------------------------------------------------------------------------------- /ide/static/ide/css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/css/settings.css -------------------------------------------------------------------------------- /ide/static/ide/documentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/documentation.json -------------------------------------------------------------------------------- /ide/static/ide/external/codemirror.hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/external/codemirror.hint.js -------------------------------------------------------------------------------- /ide/static/ide/external/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/external/uuid.js -------------------------------------------------------------------------------- /ide/static/ide/external/vnc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/external/vnc/LICENSE -------------------------------------------------------------------------------- /ide/static/ide/external/vnc/rfb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/external/vnc/rfb.js -------------------------------------------------------------------------------- /ide/static/ide/img/background-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/background-logo.png -------------------------------------------------------------------------------- /ide/static/ide/img/boot-aplite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/boot-aplite.png -------------------------------------------------------------------------------- /ide/static/ide/img/boot-basalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/boot-basalt.png -------------------------------------------------------------------------------- /ide/static/ide/img/boot-chalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/boot-chalk.png -------------------------------------------------------------------------------- /ide/static/ide/img/boot-emery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/boot-emery.png -------------------------------------------------------------------------------- /ide/static/ide/img/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/configure.png -------------------------------------------------------------------------------- /ide/static/ide/img/darkspinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/darkspinner.gif -------------------------------------------------------------------------------- /ide/static/ide/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/delete.png -------------------------------------------------------------------------------- /ide/static/ide/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/favicon.ico -------------------------------------------------------------------------------- /ide/static/ide/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/favicon.png -------------------------------------------------------------------------------- /ide/static/ide/img/fullscreen_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/fullscreen_close.png -------------------------------------------------------------------------------- /ide/static/ide/img/fullscreen_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/fullscreen_open.png -------------------------------------------------------------------------------- /ide/static/ide/img/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/help.png -------------------------------------------------------------------------------- /ide/static/ide/img/ib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/ib.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/bianca-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/bianca-black.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/bianca-silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/bianca-silver.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/black-20mm-hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/black-20mm-hole.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/bobby-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/bobby-black.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/bobby-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/bobby-gold.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/bobby-silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/bobby-silver.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/snowy-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/snowy-black.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/snowy-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/snowy-red.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/snowy-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/snowy-white.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/spalding-14mm-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/spalding-14mm-black.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/spalding-14mm-rose-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/spalding-14mm-rose-gold.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/spalding-14mm-silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/spalding-14mm-silver.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/spalding-20mm-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/spalding-20mm-black.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/spalding-20mm-silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/spalding-20mm-silver.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/tintin-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/tintin-black.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/tintin-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/tintin-blue.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/tintin-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/tintin-green.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/tintin-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/tintin-grey.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/tintin-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/tintin-orange.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/tintin-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/tintin-pink.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/tintin-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/tintin-red.png -------------------------------------------------------------------------------- /ide/static/ide/img/pebbles/tintin-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/pebbles/tintin-white.png -------------------------------------------------------------------------------- /ide/static/ide/img/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/power.png -------------------------------------------------------------------------------- /ide/static/ide/img/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/reload.png -------------------------------------------------------------------------------- /ide/static/ide/img/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/rename.png -------------------------------------------------------------------------------- /ide/static/ide/img/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/run.png -------------------------------------------------------------------------------- /ide/static/ide/img/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/save.png -------------------------------------------------------------------------------- /ide/static/ide/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/spinner.gif -------------------------------------------------------------------------------- /ide/static/ide/img/status/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/status/error.png -------------------------------------------------------------------------------- /ide/static/ide/img/status/failing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/status/failing.png -------------------------------------------------------------------------------- /ide/static/ide/img/status/passing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/status/passing.png -------------------------------------------------------------------------------- /ide/static/ide/img/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/img/zip.png -------------------------------------------------------------------------------- /ide/static/ide/js/KVtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/KVtable.js -------------------------------------------------------------------------------- /ide/static/ide/js/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/analytics.js -------------------------------------------------------------------------------- /ide/static/ide/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/autocomplete.js -------------------------------------------------------------------------------- /ide/static/ide/js/cloudpebble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/cloudpebble.js -------------------------------------------------------------------------------- /ide/static/ide/js/codefolds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/codefolds.js -------------------------------------------------------------------------------- /ide/static/ide/js/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/compile.js -------------------------------------------------------------------------------- /ide/static/ide/js/crash_handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/crash_handler.js -------------------------------------------------------------------------------- /ide/static/ide/js/csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/csrf.js -------------------------------------------------------------------------------- /ide/static/ide/js/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/dependencies.js -------------------------------------------------------------------------------- /ide/static/ide/js/dither.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/dither.js -------------------------------------------------------------------------------- /ide/static/ide/js/documentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/documentation.js -------------------------------------------------------------------------------- /ide/static/ide/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/editor.js -------------------------------------------------------------------------------- /ide/static/ide/js/emulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/emulator.js -------------------------------------------------------------------------------- /ide/static/ide/js/fuzzyprompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/fuzzyprompt.js -------------------------------------------------------------------------------- /ide/static/ide/js/gist_import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/gist_import.js -------------------------------------------------------------------------------- /ide/static/ide/js/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/github.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/canvas.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/codegen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/codegen.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/codeparser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/codeparser.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/ib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/ib.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/layer.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/layer_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/layer_list.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/layers/actionbarlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/layers/actionbarlayer.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/layers/bitmaplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/layers/bitmaplayer.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/layers/inverterlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/layers/inverterlayer.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/layers/menulayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/layers/menulayer.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/layers/textlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/layers/textlayer.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/properties.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/property_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/property_view.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/registry.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/resizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/resizer.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/resource.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/resource_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/resource_manager.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/toolkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/toolkit.js -------------------------------------------------------------------------------- /ide/static/ide/js/ib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ib/utils.js -------------------------------------------------------------------------------- /ide/static/ide/js/json_parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/json_parse.js -------------------------------------------------------------------------------- /ide/static/ide/js/libpebble/libpebble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/libpebble/libpebble.js -------------------------------------------------------------------------------- /ide/static/ide/js/libpebble/mixedsocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/libpebble/mixedsocket.js -------------------------------------------------------------------------------- /ide/static/ide/js/libpebble/proxysocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/libpebble/proxysocket.js -------------------------------------------------------------------------------- /ide/static/ide/js/libpebble/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/libpebble/websocket.js -------------------------------------------------------------------------------- /ide/static/ide/js/live_settings_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/live_settings_form.js -------------------------------------------------------------------------------- /ide/static/ide/js/new_owner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/new_owner.js -------------------------------------------------------------------------------- /ide/static/ide/js/pebble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/pebble.js -------------------------------------------------------------------------------- /ide/static/ide/js/project_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/project_list.js -------------------------------------------------------------------------------- /ide/static/ide/js/qemu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/qemu.js -------------------------------------------------------------------------------- /ide/static/ide/js/radix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/radix.js -------------------------------------------------------------------------------- /ide/static/ide/js/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/resources.js -------------------------------------------------------------------------------- /ide/static/ide/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/settings.js -------------------------------------------------------------------------------- /ide/static/ide/js/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/sidebar.js -------------------------------------------------------------------------------- /ide/static/ide/js/syntax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/syntax.js -------------------------------------------------------------------------------- /ide/static/ide/js/textext_tagger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/textext_tagger.js -------------------------------------------------------------------------------- /ide/static/ide/js/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/timeline.js -------------------------------------------------------------------------------- /ide/static/ide/js/whats_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/whats_new.js -------------------------------------------------------------------------------- /ide/static/ide/js/ycm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/js/ycm.js -------------------------------------------------------------------------------- /ide/static/ide/svg/filters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/static/ide/svg/filters.svg -------------------------------------------------------------------------------- /ide/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tasks/__init__.py -------------------------------------------------------------------------------- /ide/tasks/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tasks/archive.py -------------------------------------------------------------------------------- /ide/tasks/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tasks/build.py -------------------------------------------------------------------------------- /ide/tasks/gist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tasks/gist.py -------------------------------------------------------------------------------- /ide/tasks/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tasks/git.py -------------------------------------------------------------------------------- /ide/tasks/td_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tasks/td_task.py -------------------------------------------------------------------------------- /ide/templates/ide/gist-import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/gist-import.html -------------------------------------------------------------------------------- /ide/templates/ide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/index.html -------------------------------------------------------------------------------- /ide/templates/ide/new-owner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/new-owner.html -------------------------------------------------------------------------------- /ide/templates/ide/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/project.html -------------------------------------------------------------------------------- /ide/templates/ide/project/compile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/project/compile.html -------------------------------------------------------------------------------- /ide/templates/ide/project/dependencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/project/dependencies.html -------------------------------------------------------------------------------- /ide/templates/ide/project/github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/project/github.html -------------------------------------------------------------------------------- /ide/templates/ide/project/resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/project/resource.html -------------------------------------------------------------------------------- /ide/templates/ide/project/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/project/settings.html -------------------------------------------------------------------------------- /ide/templates/ide/project/timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/project/timeline.html -------------------------------------------------------------------------------- /ide/templates/ide/project/ui-editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/project/ui-editor.html -------------------------------------------------------------------------------- /ide/templates/ide/qemu-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/qemu-config.html -------------------------------------------------------------------------------- /ide/templates/ide/qemu-enter-token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/qemu-enter-token.html -------------------------------------------------------------------------------- /ide/templates/ide/qemu-sensors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/qemu-sensors.html -------------------------------------------------------------------------------- /ide/templates/ide/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/templates/ide/settings.html -------------------------------------------------------------------------------- /ide/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ide/tests/test_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tests/test_compile.py -------------------------------------------------------------------------------- /ide/tests/test_create_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tests/test_create_archive.py -------------------------------------------------------------------------------- /ide/tests/test_find_project_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tests/test_find_project_root.py -------------------------------------------------------------------------------- /ide/tests/test_gist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tests/test_gist.py -------------------------------------------------------------------------------- /ide/tests/test_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tests/test_git.py -------------------------------------------------------------------------------- /ide/tests/test_import_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tests/test_import_archive.py -------------------------------------------------------------------------------- /ide/tests/test_import_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tests/test_import_export.py -------------------------------------------------------------------------------- /ide/tests/test_library.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tests/test_library.zip -------------------------------------------------------------------------------- /ide/tests/test_manifest_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tests/test_manifest_generation.py -------------------------------------------------------------------------------- /ide/tests/test_project_assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tests/test_project_assembly.py -------------------------------------------------------------------------------- /ide/tests/test_project_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tests/test_project_model.py -------------------------------------------------------------------------------- /ide/tests/test_project_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tests/test_project_version.py -------------------------------------------------------------------------------- /ide/tests/test_source_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/tests/test_source_api.py -------------------------------------------------------------------------------- /ide/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/urls.py -------------------------------------------------------------------------------- /ide/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/utils/__init__.py -------------------------------------------------------------------------------- /ide/utils/cloudpebble_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/utils/cloudpebble_test.py -------------------------------------------------------------------------------- /ide/utils/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/utils/git.py -------------------------------------------------------------------------------- /ide/utils/mailinglist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/utils/mailinglist.py -------------------------------------------------------------------------------- /ide/utils/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/utils/project.py -------------------------------------------------------------------------------- /ide/utils/regexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/utils/regexes.py -------------------------------------------------------------------------------- /ide/utils/sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/utils/sdk/__init__.py -------------------------------------------------------------------------------- /ide/utils/sdk/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/utils/sdk/manifest.py -------------------------------------------------------------------------------- /ide/utils/sdk/project_assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/utils/sdk/project_assembly.py -------------------------------------------------------------------------------- /ide/utils/sdk/sdk_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/utils/sdk/sdk_scripts.py -------------------------------------------------------------------------------- /ide/utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/utils/version.py -------------------------------------------------------------------------------- /ide/utils/whatsnew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/utils/whatsnew.py -------------------------------------------------------------------------------- /ide/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ide/views/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/views/index.py -------------------------------------------------------------------------------- /ide/views/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/views/project.py -------------------------------------------------------------------------------- /ide/views/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/ide/views/settings.py -------------------------------------------------------------------------------- /locale/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /locale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/locale/README.md -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/locale/de/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/locale/es/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/locale/fr/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/locale/zh_CN/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /locale/zh_TW/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/locale/zh_TW/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/zh_TW/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/locale/zh_TW/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/manage.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/package.json -------------------------------------------------------------------------------- /qr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qr/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/qr/models.py -------------------------------------------------------------------------------- /qr/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/qr/tests.py -------------------------------------------------------------------------------- /qr/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/qr/urls.py -------------------------------------------------------------------------------- /qr/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/qr/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/requirements.txt -------------------------------------------------------------------------------- /root/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/models.py -------------------------------------------------------------------------------- /root/static/common/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/common/css/common.css -------------------------------------------------------------------------------- /root/static/common/css/progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/common/css/progress.css -------------------------------------------------------------------------------- /root/static/common/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/common/fonts/fonts.css -------------------------------------------------------------------------------- /root/static/common/img/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/common/img/checkbox-unchecked.png -------------------------------------------------------------------------------- /root/static/common/img/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/common/img/checkbox.png -------------------------------------------------------------------------------- /root/static/common/img/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/common/img/dropdown.png -------------------------------------------------------------------------------- /root/static/common/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/common/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /root/static/common/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/common/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /root/static/common/img/small-checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/common/img/small-checkbox-unchecked.png -------------------------------------------------------------------------------- /root/static/common/img/small-checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/common/img/small-checkbox.png -------------------------------------------------------------------------------- /root/static/common/js/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/common/js/ajax.js -------------------------------------------------------------------------------- /root/static/common/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/common/js/modal.js -------------------------------------------------------------------------------- /root/static/root/css/splash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/root/css/splash.css -------------------------------------------------------------------------------- /root/static/root/images/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/root/images/browser.png -------------------------------------------------------------------------------- /root/static/root/images/cloudpebble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/root/images/cloudpebble.png -------------------------------------------------------------------------------- /root/static/root/images/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/root/images/clouds.png -------------------------------------------------------------------------------- /root/static/root/images/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/root/images/cloudy.png -------------------------------------------------------------------------------- /root/static/root/images/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/root/images/json.png -------------------------------------------------------------------------------- /root/static/root/images/pebble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/root/images/pebble.png -------------------------------------------------------------------------------- /root/static/root/images/unfinished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/root/images/unfinished.png -------------------------------------------------------------------------------- /root/static/root/js/splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/static/root/js/splash.js -------------------------------------------------------------------------------- /root/templates/common/base-narrow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/templates/common/base-narrow.html -------------------------------------------------------------------------------- /root/templates/common/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/templates/common/base.html -------------------------------------------------------------------------------- /root/templates/root/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/templates/root/index.html -------------------------------------------------------------------------------- /root/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/tests.py -------------------------------------------------------------------------------- /root/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/urls.py -------------------------------------------------------------------------------- /root/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/root/views.py -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.11 2 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_filter_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/tests/test_filter_dict.py -------------------------------------------------------------------------------- /translators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/translators.md -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'katharine' 2 | -------------------------------------------------------------------------------- /utils/fakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/utils/fakes.py -------------------------------------------------------------------------------- /utils/filter_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/utils/filter_dict.py -------------------------------------------------------------------------------- /utils/jsonview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/utils/jsonview.py -------------------------------------------------------------------------------- /utils/redis_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/utils/redis_helper.py -------------------------------------------------------------------------------- /utils/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/utils/s3.py -------------------------------------------------------------------------------- /utils/td_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cloudpebble/HEAD/utils/td_helper.py --------------------------------------------------------------------------------