Ver código fonte

Merge branch '6.x-0.4-dev'

alexgl 13 anos atrás
pai
commit
5c3a77014a

+ 31 - 20
base/tripal_library/tripal_library.module

@@ -903,27 +903,32 @@ function chado_library_validate($node){
  */
 function chado_library_insert($node){
 
-   // get the library type id
-   $values = array(
-      'cv_id' => array(
-         'name' => 'tripal'
-      ),
-      'name' => $node->library_type
-   );
-   $type = tripal_core_chado_select('cvterm',array('cvterm_id'),$values);
-
-   $values = array(
-      'name' => $node->title,
-      'uniquename' => $node->uniquename,
-      'organism_id' => $node->organism_id,
-      'type_id' => $type[0]->cvterm_id
-   );
-   $library = tripal_core_chado_insert('library', $values);
+  if ($node->library_id) {
+    $library['library_id'] = $node->library_id;
+  } else {
+     // get the library type id
+     $values = array(
+        'cv_id' => array(
+           'name' => 'tripal'
+        ),
+        'name' => $node->library_type
+     );
+     $type = tripal_core_chado_select('cvterm',array('cvterm_id'),$values);
+  
+     $values = array(
+        'name' => $node->title,
+        'uniquename' => $node->uniquename,
+        'organism_id' => $node->organism_id,
+        'type_id' => $type[0]->cvterm_id
+     );
+     $library = tripal_core_chado_insert('library', $values);
+   }
+   
    if ($library) {
        // add the description property
       tripal_library_insert_property($library['library_id'],'library_description',$node->library_description);
 
-      // make sure the entry for this feature doesn't already exist in the chado_feature table
+      // make sure the entry for this feature doesn't already exist in the chado_library table
       // if it doesn't exist then we want to add it.
       $library_id = chado_get_id_for_node('library',$node) ;
       if(!$library_id){
@@ -1169,6 +1174,7 @@ function tripal_library_sync_libraries ($library_id = NULL, $job_id = NULL){
           "WHERE library_id = %d";
 
    while($library = db_fetch_object($results)){
+    
       // check if this library already exists in the drupal database. if it
       // does then skip this library and go to the next one.
       if(!db_fetch_object(db_query($sql,$library->library_id))){
@@ -1183,15 +1189,20 @@ function tripal_library_sync_libraries ($library_id = NULL, $job_id = NULL){
          $new_node->type_id = $library->type_id;
 
          node_validate($new_node);
-         if(!form_get_errors()){
+         $errors = form_get_errors();
+         if(!$errors){
             $node = node_submit($new_node);
             node_save($node);
             if($node->nid){
-               $page_content .= "Added $library->name<br>";
+              print "Added ".$library->name."\n";
+            } else {
+              print "ERROR: Unable to create ".$library->name."\n";
             }
+         } else {
+           print "ERROR: Unable to create ".$library->name."\n".print_r($errors, TRUE)."\n";
          }
       } else {
-         $page_content .= "Skipped $library->name<br>";
+         print "Skipped ".$library->name."\n";
       }
    }
    return $page_content;

+ 1 - 1
extensions/tripal_analysis_blast/node-chado_analysis_blast.tpl.php

@@ -33,7 +33,7 @@ $organism = $variables['node']->organism;
 ?>
 
 <?php if ($teaser) { 
-	include('templates/tripal_analysis_blast_teaser.tpl.php');
+	include(drupal_get_path('module' , 'tripal_analysis_blast') . '/theme/tripal_analysis_blast/tripal_analysis_blast_teaser.tpl.php');
 } else { ?>
 
 <script type="text/javascript">

+ 1 - 1
extensions/tripal_analysis_blast/theme/tripal_analysis_blast/tripal_analysis_blast_report.tpl.php

@@ -22,7 +22,7 @@ $hits = $report->hits;
 
 <div id="tripal_ajaxLoading" style="display:none">
 	<div id="loadingText">Loading...</div>
-	<img src="<?php print url("sites/all/themes/theme_tripal/images/ajax-loader.gif") ?>">
+	<img src="<?php print url(drupal_get_path('theme', 'tripal') . '/images/ajax-loader.gif') ?>">
 </div>
 
 <div id="blast-hits-report">

+ 1 - 1
extensions/tripal_analysis_blast/theme/tripal_feature/tripal_feature_blast_results.tpl.php

@@ -5,7 +5,7 @@ $blast_results_list = $feature->tripal_analysis_blast->blast_results_list;
 ?>
 <div id="tripal_ajaxLoading" style="display:none">
 	<div id="loadingText">Loading...</div>
-	<img src="sites/all/themes/theme_tripal/images/ajax-loader.gif">
+	<img src="<?php print drupal_get_path('theme', 'tripal') . '/images/ajax-loader.gif';?>">
 </div>
 
 <?php 

+ 1 - 1
extensions/tripal_analysis_interpro/node-chado_analysis_interpro.tpl.php

@@ -31,7 +31,7 @@ $organism = $variables['node']->organism;
 ?>
 
 <?php if ($teaser) { 
-  include('tripal_analysis_interpro/tripal_analysis_interpro_teaser.tpl.php'); 
+  include(drupal_get_path('module' , 'tripal_analysis_interpro') . '/theme/tripal_analysis_interpro/tripal_analysis_interpro_teaser.tpl.php'); 
 } else { ?>
 
 <script type="text/javascript">

+ 1 - 1
extensions/tripal_analysis_interpro/tripal_analysis_interpro.module

@@ -405,7 +405,7 @@ function tripal_analysis_interpro_theme () {
       'tripal_feature_interpro_results' => array (
          'arguments' => array('node'=> null),
          'template' => 'tripal_feature_interpro_results',
-         'path' => $path . '/tripal_features',
+         'path' => $path . '/tripal_feature',
 	   ),
       'tripal_analysis_interpro_base' => array (
          'arguments' => array('node'=> null),

+ 3 - 3
extensions/tripal_analysis_kegg/node-chado_analysis_kegg.tpl.php

@@ -30,7 +30,7 @@ $organism = $variables['node']->organism;
 ?>
 
 <?php if ($teaser) { 
-  include('tripal_analysis_kegg/tripal_analysis_kegg_teaser.tpl.php'); 
+  include(drupal_get_path('module', 'tripal_analysis_kegg') . '/theme/tripal_analysis_kegg/tripal_analysis_kegg_teaser.tpl.php'); 
 } else { ?>
 
 <script type="text/javascript">
@@ -83,8 +83,8 @@ if (Drupal.jsEnabled) {
 <div id="tripal_analysis_kegg_details" class="tripal_details">
 
    <!-- Basic Details Theme -->
-   <?php include('tripal_analysis_kegg/tripal_analysis_kegg_base.tpl.php'); ?>
-   <?php include('tripal_analysis_kegg/tripal_analysis_kegg_report.tpl.php'); ?>
+   <?php include(drupal_get_path('module', 'tripal_analysis_kegg') . '/theme/tripal_analysis_kegg/tripal_analysis_kegg_base.tpl.php'); ?>
+   <?php include(drupal_get_path('module', 'tripal_analysis_kegg') . '/theme/tripal_analysis_kegg/tripal_analysis_kegg_report.tpl.php'); ?>
 
    <?php print $content ?>
 </div>

+ 1 - 1
extensions/tripal_analysis_kegg/theme/css/tripal_analysis_kegg.css

@@ -25,7 +25,7 @@
 }
 
 #tripal_kegg_brite_links {
-   background-image:url("../images/kegg.gif");
+   background-image:url("../images/kegg.gif");/*TODO: figure out what to do about images in tripal extensions*/
    background-repeat: no-repeat;
    padding-left:20px;
 }

BIN
extensions/tripal_analysis_kegg/theme/images/kegg.gif