Plugin Directory

Changeset 1948495


Ignore:
Timestamp:
09/28/2018 10:10:42 AM (8 years ago)
Author:
sund
Message:

tagging 1.0.5

Location:
wave-for-wp
Files:
2 edited
7 copied

Legend:

Unmodified
Added
Removed
  • wave-for-wp/tags/1.0.5/readme.txt

    r1854688 r1948495  
    11=== Wave ===                                                                                                                                                                         
    22Contributors: sund
    3 Tags: google docs, real-time, collaboration, co-editing, collaborative editing, realtime, tinymce,
     3Tags: real-time, collaboration, co-editing, collaborative editing, realtime, tinymce,
    44Requires at least: 3.7
    55Tested up to: 4.9.2
     
    1212
    1313== 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.
     14Have 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.
    1615
    1716Major features in Codox Wave include:
  • wave-for-wp/tags/1.0.5/wave-wp.php

    r1854656 r1948495  
    55Description: Wave enables teams to real-time co-edit posts and pages in WordPress using Tinymce.
    66Author: sund
    7 Version: 1.0.4
     7Version: 1.0.5
    88Text Domain: wave-wp
    99*/
     
    1111function log_me($message) {
    1212
     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    }
    1320  }
     21  //endRemoveIf(production)
     22}
    1423
    1524function cdx_get_plugin_basename() {
     
    1726}
    1827
     28//removeIf(production)
     29// DS testing
     30if (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
     39if (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
     46if (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
     53if (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
     62if (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
     69if (process.env.BUILD_ENV === 'production') {
     70//endRemoveIf(production)
    1971define('WAVE_SERVER_URL', 'https://app.codox.io');
    2072define('CDN1_URL', 'https://cdn1.codox.io');
    2173define('CDN2_URL', 'https://cdn2.codox.io');
     74//removeIf(production)
     75}
     76//endRemoveIf(production)
     77 
    2278const WAVE_CLIENT_JS_URL = WAVE_SERVER_URL . '/plugins/wave.client.js';
    2379const WAVE_CLIENT_CSS_URL = CDN1_URL . '/lib/css/wave.client.css';
  • wave-for-wp/trunk/readme.txt

    r1854688 r1948495  
    11=== Wave ===                                                                                                                                                                         
    22Contributors: sund
    3 Tags: google docs, real-time, collaboration, co-editing, collaborative editing, realtime, tinymce,
     3Tags: real-time, collaboration, co-editing, collaborative editing, realtime, tinymce,
    44Requires at least: 3.7
    55Tested up to: 4.9.2
     
    1212
    1313== 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.
     14Have 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.
    1615
    1716Major features in Codox Wave include:
  • wave-for-wp/trunk/wave-wp.php

    r1854656 r1948495  
    55Description: Wave enables teams to real-time co-edit posts and pages in WordPress using Tinymce.
    66Author: sund
    7 Version: 1.0.4
     7Version: 1.0.5
    88Text Domain: wave-wp
    99*/
     
    1111function log_me($message) {
    1212
     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    }
    1320  }
     21  //endRemoveIf(production)
     22}
    1423
    1524function cdx_get_plugin_basename() {
     
    1726}
    1827
     28//removeIf(production)
     29// DS testing
     30if (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
     39if (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
     46if (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
     53if (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
     62if (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
     69if (process.env.BUILD_ENV === 'production') {
     70//endRemoveIf(production)
    1971define('WAVE_SERVER_URL', 'https://app.codox.io');
    2072define('CDN1_URL', 'https://cdn1.codox.io');
    2173define('CDN2_URL', 'https://cdn2.codox.io');
     74//removeIf(production)
     75}
     76//endRemoveIf(production)
     77 
    2278const WAVE_CLIENT_JS_URL = WAVE_SERVER_URL . '/plugins/wave.client.js';
    2379const WAVE_CLIENT_CSS_URL = CDN1_URL . '/lib/css/wave.client.css';
Note: See TracChangeset for help on using the changeset viewer.