/[takahashi]/takahashi.xul
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 /takahashi.xul

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

revision 5 by dpavlin, Fri Jun 9 22:21:33 2006 UTC revision 10 by dpavlin, Sat Jun 10 15:03:44 2006 UTC
# Line 737  var Presentation = { Line 737  var Presentation = {
737    
738                  var linksRegExp      = this.makePhraseRegExp('^([^%O]+)?%O%O(([^|]+)?\\||)([^%C]+)%C%C', '');                  var linksRegExp      = this.makePhraseRegExp('^([^%O]+)?%O%O(([^|]+)?\\||)([^%C]+)%C%C', '');
739    
740                  var wikiRegExp       = this.makePhraseRegExp('^([^%O]+)?%O([0-9]*)([#!])?([:\/\*_])([^%C]+)[:\/\*_]%C', '');                  var wikiRegExp       = this.makePhraseRegExp('^([^%O]+)?%O([0-9]*)([#!])?([:\/\*_-])([^%C]+)[:\/\*_-]%C', '');
741    
742                  var montaRegExp      = this.makePhraseRegExp('^([^%O]+)?%O([^%C]+)%C', '');                  var montaRegExp      = this.makePhraseRegExp('^([^%O]+)?%O([^%C]+)%C', '');
743    
# Line 894  var Presentation = { Line 894  var Presentation = {
894                                                  style += '; font-style: italic;';                                                  style += '; font-style: italic;';
895                                          } else if (RegExp.$4 == '_') {                                          } else if (RegExp.$4 == '_') {
896                                                  style += '; text-decoration: underline;';                                                  style += '; text-decoration: underline;';
897                                            } else if (RegExp.$4 == '-') {
898                                                    style += '; text-decoration: line-through;';
899                                          }                                          }
900                                          fragment.lastChild.lastChild.setAttribute('style', style);                                          fragment.lastChild.lastChild.setAttribute('style', style);
901                                          if (RegExp.$3 == '!') fragment.lastChild.lastChild.setAttribute('class', 'em-text');                                          if (RegExp.$3 == '!') fragment.lastChild.lastChild.setAttribute('class', 'em-text');
# Line 1006  var Presentation = { Line 1008  var Presentation = {
1008                  if (this.dataPath != file) {                  if (this.dataPath != file) {
1009                          var path = this.dataPath;                          var path = this.dataPath;
1010                          var request = new XMLHttpRequest();                          var request = new XMLHttpRequest();
1011                          request.open('GET', path);                          request.open('GET', path + '?rand=' + Math.random() );
1012                          request.onload = function() {                          request.onload = function() {
1013                                  Presentation.textbox.value = request.responseText;                                  Presentation.textbox.value = request.responseText;
1014                                  Presentation.data = Presentation.textbox.value;                                  Presentation.data = Presentation.textbox.value;

Legend:
Removed from v.5  
changed lines
  Added in v.10

  ViewVC Help
Powered by ViewVC 1.1.26