Changeset 1948495
- Timestamp:
- 09/28/2018 10:10:42 AM (8 years ago)
- Location:
- wave-for-wp
- Files:
-
- 2 edited
- 7 copied
-
tags/1.0.5 (copied) (copied from wave-for-wp/trunk)
-
tags/1.0.5/css (copied) (copied from wave-for-wp/trunk/css)
-
tags/1.0.5/html (copied) (copied from wave-for-wp/trunk/html)
-
tags/1.0.5/js (copied) (copied from wave-for-wp/trunk/js)
-
tags/1.0.5/php (copied) (copied from wave-for-wp/trunk/php)
-
tags/1.0.5/readme.txt (copied) (copied from wave-for-wp/trunk/readme.txt) (2 diffs)
-
tags/1.0.5/wave-wp.php (copied) (copied from wave-for-wp/trunk/wave-wp.php) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wave-wp.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wave-for-wp/tags/1.0.5/readme.txt
r1854688 r1948495 1 1 === Wave === 2 2 Contributors: sund 3 Tags: google docs,real-time, collaboration, co-editing, collaborative editing, realtime, tinymce,3 Tags: real-time, collaboration, co-editing, collaborative editing, realtime, tinymce, 4 4 Requires at least: 3.7 5 5 Tested up to: 4.9.2 … … 12 12 13 13 == Description == 14 Have you ever been frustrated with manually copying and pasting article/post content between WordPress and Google Docs for collaboration? Wave by Codox will turn WordPress into 15 a real-time CMS, so your team can collaboratively edit blogs/posts/articles in real-time. 14 Have you ever been frustrated with manually copying and pasting article/post content between WordPress and Google Docs for collaboration? Wave by Codox will turn WordPress into a real-time CMS, so your team can collaboratively edit blogs/posts/articles in real-time. 16 15 17 16 Major features in Codox Wave include: -
wave-for-wp/tags/1.0.5/wave-wp.php
r1854656 r1948495 5 5 Description: Wave enables teams to real-time co-edit posts and pages in WordPress using Tinymce. 6 6 Author: sund 7 Version: 1.0. 47 Version: 1.0.5 8 8 Text Domain: wave-wp 9 9 */ … … 11 11 function log_me($message) { 12 12 13 //removeIf(production) 14 if (WP_DEBUG === true) { 15 if (is_array($message) || is_object($message)) { 16 error_log(print_r($message, true)); 17 } else { 18 error_log($message); 19 } 13 20 } 21 //endRemoveIf(production) 22 } 14 23 15 24 function cdx_get_plugin_basename() { … … 17 26 } 18 27 28 //removeIf(production) 29 // DS testing 30 if (process.env.BUILD_ENV === "david") { 31 //BASE_URL = 'https://127.0.0.1:9000/'; 32 //note: this must be consistent with const domain defined in /smd/config/environment/development.js 33 define('WAVE_SERVER_URL', 'https://127.0.0.1:9000'); 34 define('CDN1_URL', 'https://127.0.0.1:9000'); 35 define('CDN2_URL', 'https://127.0.0.1:9000'); 36 } 37 38 // SCZ testing 39 if (process.env.BUILD_ENV === "scz") { 40 define('WAVE_SERVER_URL', 'https://155.69.141.250:9000'); 41 define('CDN1_URL', 'https://155.69.141.250:9000'); 42 define('CDN2_URL', 'https://155.69.141.250:9000'); 43 } 44 45 // Agustina testing 46 if (process.env.BUILD_ENV === "agustina") { 47 define('WAVE_SERVER_URL', 'https://cdx.homeip.net:9000'); 48 define('CDN1_URL', 'https://cdx.homeip.net:9000'); 49 define('CDN2_URL', 'https://cdx.homeip.net:9000'); 50 } 51 52 // Staging server 53 if (process.env.BUILD_ENV === "staging-standalone") { 54 define('WAVE_SERVER_URL', 'https://smd.stage.codox.io'); 55 // define('CDN1_URL', 'https://d2238tohze1a9h.cloudfront.net'); 56 define('CDN1_URL', 'https://cdn1.stage.codox.io'); 57 // define('CDN2_URL', 'https://d2b8ko6kausgbo.cloudfront.net'); 58 define('CDN2_URL', 'https://cdn2.stage.codox.io'); 59 } 60 61 // Staging server with elb 62 if (process.env.BUILD_ENV === "staging-elb") { 63 define('WAVE_SERVER_URL', 'https://elb-smd-stage.codox.io/'); 64 define('CDN1_URL', 'https://elb-smd-stage.codox.io'); 65 define('CDN2_URL', 'https://elb-smd-stage.codox.io'); 66 } 67 68 // production server 69 if (process.env.BUILD_ENV === 'production') { 70 //endRemoveIf(production) 19 71 define('WAVE_SERVER_URL', 'https://app.codox.io'); 20 72 define('CDN1_URL', 'https://cdn1.codox.io'); 21 73 define('CDN2_URL', 'https://cdn2.codox.io'); 74 //removeIf(production) 75 } 76 //endRemoveIf(production) 77 22 78 const WAVE_CLIENT_JS_URL = WAVE_SERVER_URL . '/plugins/wave.client.js'; 23 79 const WAVE_CLIENT_CSS_URL = CDN1_URL . '/lib/css/wave.client.css'; -
wave-for-wp/trunk/readme.txt
r1854688 r1948495 1 1 === Wave === 2 2 Contributors: sund 3 Tags: google docs,real-time, collaboration, co-editing, collaborative editing, realtime, tinymce,3 Tags: real-time, collaboration, co-editing, collaborative editing, realtime, tinymce, 4 4 Requires at least: 3.7 5 5 Tested up to: 4.9.2 … … 12 12 13 13 == Description == 14 Have you ever been frustrated with manually copying and pasting article/post content between WordPress and Google Docs for collaboration? Wave by Codox will turn WordPress into 15 a real-time CMS, so your team can collaboratively edit blogs/posts/articles in real-time. 14 Have you ever been frustrated with manually copying and pasting article/post content between WordPress and Google Docs for collaboration? Wave by Codox will turn WordPress into a real-time CMS, so your team can collaboratively edit blogs/posts/articles in real-time. 16 15 17 16 Major features in Codox Wave include: -
wave-for-wp/trunk/wave-wp.php
r1854656 r1948495 5 5 Description: Wave enables teams to real-time co-edit posts and pages in WordPress using Tinymce. 6 6 Author: sund 7 Version: 1.0. 47 Version: 1.0.5 8 8 Text Domain: wave-wp 9 9 */ … … 11 11 function log_me($message) { 12 12 13 //removeIf(production) 14 if (WP_DEBUG === true) { 15 if (is_array($message) || is_object($message)) { 16 error_log(print_r($message, true)); 17 } else { 18 error_log($message); 19 } 13 20 } 21 //endRemoveIf(production) 22 } 14 23 15 24 function cdx_get_plugin_basename() { … … 17 26 } 18 27 28 //removeIf(production) 29 // DS testing 30 if (process.env.BUILD_ENV === "david") { 31 //BASE_URL = 'https://127.0.0.1:9000/'; 32 //note: this must be consistent with const domain defined in /smd/config/environment/development.js 33 define('WAVE_SERVER_URL', 'https://127.0.0.1:9000'); 34 define('CDN1_URL', 'https://127.0.0.1:9000'); 35 define('CDN2_URL', 'https://127.0.0.1:9000'); 36 } 37 38 // SCZ testing 39 if (process.env.BUILD_ENV === "scz") { 40 define('WAVE_SERVER_URL', 'https://155.69.141.250:9000'); 41 define('CDN1_URL', 'https://155.69.141.250:9000'); 42 define('CDN2_URL', 'https://155.69.141.250:9000'); 43 } 44 45 // Agustina testing 46 if (process.env.BUILD_ENV === "agustina") { 47 define('WAVE_SERVER_URL', 'https://cdx.homeip.net:9000'); 48 define('CDN1_URL', 'https://cdx.homeip.net:9000'); 49 define('CDN2_URL', 'https://cdx.homeip.net:9000'); 50 } 51 52 // Staging server 53 if (process.env.BUILD_ENV === "staging-standalone") { 54 define('WAVE_SERVER_URL', 'https://smd.stage.codox.io'); 55 // define('CDN1_URL', 'https://d2238tohze1a9h.cloudfront.net'); 56 define('CDN1_URL', 'https://cdn1.stage.codox.io'); 57 // define('CDN2_URL', 'https://d2b8ko6kausgbo.cloudfront.net'); 58 define('CDN2_URL', 'https://cdn2.stage.codox.io'); 59 } 60 61 // Staging server with elb 62 if (process.env.BUILD_ENV === "staging-elb") { 63 define('WAVE_SERVER_URL', 'https://elb-smd-stage.codox.io/'); 64 define('CDN1_URL', 'https://elb-smd-stage.codox.io'); 65 define('CDN2_URL', 'https://elb-smd-stage.codox.io'); 66 } 67 68 // production server 69 if (process.env.BUILD_ENV === 'production') { 70 //endRemoveIf(production) 19 71 define('WAVE_SERVER_URL', 'https://app.codox.io'); 20 72 define('CDN1_URL', 'https://cdn1.codox.io'); 21 73 define('CDN2_URL', 'https://cdn2.codox.io'); 74 //removeIf(production) 75 } 76 //endRemoveIf(production) 77 22 78 const WAVE_CLIENT_JS_URL = WAVE_SERVER_URL . '/plugins/wave.client.js'; 23 79 const WAVE_CLIENT_CSS_URL = CDN1_URL . '/lib/css/wave.client.css';
Note: See TracChangeset
for help on using the changeset viewer.