/[webpac2]/Webpacus/root/editor/editor.js
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /Webpacus/root/editor/editor.js

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 171 by dpavlin, Sun Nov 27 00:50:32 2005 UTC revision 187 by dpavlin, Sun Nov 27 22:10:36 2005 UTC
# Line 6  var rec = null; Line 6  var rec = null;
6  var url = null;  var url = null;
7  var template_filename = null;  var template_filename = null;
8    
9    var pending_js = null;
10    
11  var css_rnd = 0;  var css_rnd = 0;
12    
13  function update_status(text) {  function _ts(text) {
14          var el = $('div_record_nr');          var el = $('div_template_status');
15            if (el) el.innerHTML = text;
16    }
17    
18    function _cs(text) {
19            var el = $('div_css_status');
20          if (el) el.innerHTML = text;          if (el) el.innerHTML = text;
21  }  }
22    
23  function load_rec(nr) {  function load_rec(nr, tmp_template_filename) {
24          Logger.debug('load_rec '+nr);  
25            if (! nr) {
26                    Logger.error('load_rec called without nr');
27                    return false;
28            }
29    
30            if (! tmp_template_filename) tmp_template_filename = template_filename;
31            Logger.info('load_rec '+nr+' in '+tmp_template_filename);
32    
33          if (loading.record) {          if (loading.record) {
34                  Logger.info('loading of record '+nr+' skipped, load in progress');                  Logger.info('loading of record '+nr+' skipped, load in progress');
# Line 30  function load_rec(nr) { Line 44  function load_rec(nr) {
44                  Element.removeClassName('a_left_arr', 'nav_disable');                  Element.removeClassName('a_left_arr', 'nav_disable');
45          }          }
46    
47          var args = '?mfn='+nr+'&template_filename='+template_filename;          var args = '?mfn='+nr+'&template_filename='+tmp_template_filename;
48    
49          new Ajax.Updater( 'div_record',  url+'record'+args, {          new Ajax.Updater( 'div_record',  url+'record'+args, {
50                  asynchronous: 1,                  asynchronous: 1,
# Line 117  function switch_template(new_template_fi Line 131  function switch_template(new_template_fi
131          Logger.debug('refresh record');          Logger.debug('refresh record');
132          load_rec(rec);          load_rec(rec);
133    
134            edKill('template_content');
135    
136          hide_working();          hide_working();
137    
138          return false;          return false;
# Line 135  function load_template( template_filenam Line 151  function load_template( template_filenam
151                  return;                  return;
152          }          }
153    
154            show_working();
155    
156          var args = '?template_filename='+template_filename;          var args = '?template_filename='+template_filename;
157    
158          new Ajax.Updater( 'div_template',  url+'template'+args, {          new Ajax.Updater( 'div_template',  url+'template'+args, {
159                  asynchronous: 1,                  asynchronous: 1,
160                  onLoading: function(request) {                  onLoading: function(request) {
161                          loading.template = 1;                          loading.template = 1;
                         show_working();  
162                          Logger.info('load_template.onLoading: '+template_filename);                          Logger.info('load_template.onLoading: '+template_filename);
163                  },                  },
164                  onLoaded: function(request) {                  onLoaded: function(request) {
# Line 160  function load_css(css_filename) { Line 177  function load_css(css_filename) {
177                  return;                  return;
178          }          }
179    
180            show_working();
181    
182          new Ajax.Updater( 'div_css',  url+'css', {          new Ajax.Updater( 'div_css',  url+'css', {
183                  asynchronous: 1,                  asynchronous: 1,
184                  onLoading: function(request) {                  onLoading: function(request) {
185                          loading.css = 1;                          loading.css = 1;
                         show_working();  
186                          Logger.info('load_css.onLoading: '+css_filename);                          Logger.info('load_css.onLoading: '+css_filename);
187                  },                  },
188                  onLoaded: function(request) {                  onLoaded: function(request) {
# Line 176  function load_css(css_filename) { Line 194  function load_css(css_filename) {
194  };  };
195    
196  function reload_css() {  function reload_css() {
197          Logger.error('reload_css is not yet implemented!');  
198            css_rnd++;
199            Logger.info('loading user.css?'+css_rnd);
200            $('user_css_link').href = 'css/user.css?'+css_rnd;
201    
202          return false;          return false;
203  }  }
204    

Legend:
Removed from v.171  
changed lines
  Added in v.187

  ViewVC Help
Powered by ViewVC 1.1.26