Diff for /Amaya/amaya/templates.c between versions 1.3 and 1.4

version 1.3, 1999/06/22 15:22:34 version 1.4, 1999/06/27 16:26:46
Line 23 Line 23
   
   
 /* content of the attr name of the meta tag defining the doc's destination URL */  /* content of the attr name of the meta tag defining the doc's destination URL */
 #define META_TEMPLATE_NAME "AMAYA_TEMPLATE"  #if defined(_I18N_) || defined(__JIS__)
   #   define META_TEMPLATE_NAME L"AMAYA_TEMPLATE"
   #else /* defined(_I18N_) || defined(__JIS__) */
   #     define META_TEMPLATE_NAME "AMAYA_TEMPLATE"
   #endif /* defined(_I18N_) || defined(__JIS__) */
 /* URL of the script providing templates (for reload) */  /* URL of the script providing templates (for reload) */
 static STRING script_URL;  static STRING script_URL;
   
Line 45  View view; Line 49  View view;
    STRING    URLform;     STRING    URLform;
    Document  templateSelect;     Document  templateSelect;
   
    URLform = TtaGetEnvString ("URL_TEMPLATE");     URLform = TtaGetEnvString (TEXT("URL_TEMPLATE"));
    if (URLform != NULL)     if (URLform != NULL)
      {       {
       templateSelect = GetHTMLDocument (URLform, NULL, 0, 0, CE_ABSOLUTE, FALSE, NULL, NULL);        templateSelect = GetHTMLDocument (URLform, NULL, 0, 0, CE_ABSOLUTE, FALSE, NULL, NULL);

Removed from v.1.3  
changed lines
  Added in v.1.4


Webmaster