Changeset 121


Ignore:
Timestamp:
09/21/2008 12:28:47 PM (4 years ago)
Author:
admin
Message:
  • changed wikiSuggestLocation in bookmarks to look at OMWIKI_SCRIPT_PATH variable for /w or /wiki location of JSON web service
  • increased version number

Index: D:/Tech/Eclipse/workspace/omcollab/bookmarks/config.inc.php
===================================================================
--- D:/Tech/Eclipse/workspace/omcollab/bookmarks/config.inc.php (revision 114)
+++ D:/Tech/Eclipse/workspace/omcollab/bookmarks/config.inc.php (working copy)
@@ -70,7 +70,8 @@

$mwdbname = OMWIKI_DATABASE_NAME;
$mwtableprefix = OMWIKI_DB_TABLE_PREFIX;
$targetserverlocation = " http://{$_SERVER['HTTP_HOST']}" . RR_OMCOLLAB_DIRECTORY . "bookmarks/tags.php/";

-$wikiSuggestLocation = " http://{$_SERVER['HTTP_HOST']}" . RR_OMCOLLAB_DIRECTORY . "wiki/extensions/SelectCategoryTagCloud/SelectCategoryTagCloudSuggestJSON.php";
+$wikiSuggestLocation = " http://{$_SERVER['HTTP_HOST']}" . OMWIKI_SCRIPT_PATH . "/extensions/SelectCategoryTagCloud/SelectCategoryTagCloudSuggestJSON.php";
+

$mwdbtype = 'mysql';
$mwdbport = '3306';
$mwcookiename = "{$mwdbname}_{$mwtableprefix}";

Index: D:/Tech/Eclipse/workspace/omcollab/_InstallationResources/omconfig.php
===================================================================
--- D:/Tech/Eclipse/workspace/omcollab/_InstallationResources/omconfig.php (revision 114)
+++ D:/Tech/Eclipse/workspace/omcollab/_InstallationResources/omconfig.php (working copy)
@@ -37,7 +37,7 @@

}


# [ omCollab Version - increment manually - will appear as title on omCollab logo]

-define( 'OMCOLLAB_VERSION' , '1.003.0' );
+define( 'OMCOLLAB_VERSION' , '1.003.2' );

# [ ... ]
define( 'OMCOLLAB_HTTP_HOST' , $_SERVERHTTP_HOST? );

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/_InstallationResources/omconfig.php

    r114 r121  
    3838 
    3939# [ omCollab Version - increment manually - will appear as title on omCollab logo] 
    40 define( 'OMCOLLAB_VERSION'                         , '1.003.0' ); 
     40define( 'OMCOLLAB_VERSION'                         , '1.003.2' ); 
    4141 
    4242# [ ... ] 
  • trunk/bookmarks/config.inc.php

    r103 r121  
    7171$mwtableprefix                  = OMWIKI_DB_TABLE_PREFIX; 
    7272$targetserverlocation   = "http://{$_SERVER['HTTP_HOST']}" . RR_OMCOLLAB_DIRECTORY . "bookmarks/tags.php/"; 
    73 $wikiSuggestLocation    = "http://{$_SERVER['HTTP_HOST']}" . RR_OMCOLLAB_DIRECTORY . "wiki/extensions/SelectCategoryTagCloud/SelectCategoryTagCloudSuggestJSON.php"; 
     73$wikiSuggestLocation    = "http://{$_SERVER['HTTP_HOST']}" . OMWIKI_SCRIPT_PATH . "/extensions/SelectCategoryTagCloud/SelectCategoryTagCloudSuggestJSON.php"; 
     74 
    7475$mwdbtype               = 'mysql'; 
    7576$mwdbport               = '3306'; 
Note: See TracChangeset for help on using the changeset viewer.