Index: openacs-4/packages/xowiki/www/view-plain.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/www/Attic/view-plain.adp,v
diff -u -r1.48 -r1.49
--- openacs-4/packages/xowiki/www/view-plain.adp 7 Dec 2012 15:50:13 -0000 1.48
+++ openacs-4/packages/xowiki/www/view-plain.adp 28 Feb 2013 17:13:38 -0000 1.49
@@ -1,4 +1,4 @@
-
+
Index: openacs-4/packages/xowiki/www/resources/xowiki.css
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/www/resources/xowiki.css,v
diff -u -r1.59 -r1.60
--- openacs-4/packages/xowiki/www/resources/xowiki.css 13 Sep 2012 16:05:42 -0000 1.59
+++ openacs-4/packages/xowiki/www/resources/xowiki.css 28 Feb 2013 17:13:38 -0000 1.60
@@ -460,6 +460,10 @@
margin-left: 10em;
}
+div.xowiki-content .content-with-folders fieldset.compound-field .repeatable {
+ margin-left: 1em;
+}
+
div.xowiki-content #menubar a.disabled {
color: #A0A0A0;
/* or maybe display none */
Index: openacs-4/packages/xowiki/www/resources/ckeditor/_source/plugins/xowikiimage/plugin.js
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/www/resources/ckeditor/_source/plugins/xowikiimage/Attic/plugin.js,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/xowiki/www/resources/ckeditor/_source/plugins/xowikiimage/plugin.js 13 Sep 2012 16:06:14 -0000 1.3
+++ openacs-4/packages/xowiki/www/resources/ckeditor/_source/plugins/xowikiimage/plugin.js 28 Feb 2013 17:13:38 -0000 1.4
@@ -9,7 +9,6 @@
});
CKEDITOR.plugins.add( 'xowikiimage', {
- icon: this.path + 'image.gif',
lang : [ 'en', 'de' ],
init : function( editor ) {
@@ -28,7 +27,9 @@
xowikiimage_dialog.find("#insert_form").submit(function() {
var pathname = window.location.pathname;
pathname = pathname.substr(pathname.lastIndexOf("/")+1,pathname.length)
- insert_the_image(xowikiimage_dialog.find("#f_url").val().replace(/file:/g, "image:"),pathname+'/'+xowikiimage_dialog.find("#f_url").val()+'?m=download',editor);
+ insert_the_image(xowikiimage_dialog.find("#f_url").val().replace(/file:/g, "image:"),
+ pathname+'/'+xowikiimage_dialog.find("#f_url").val()+'?m=download',
+ editor);
xowikiimage_dialog.dialog("close");
return false;
});
@@ -38,14 +39,15 @@
// Register the toolbar button.
editor.ui.addButton( 'xowikiImage', {
label : editor.lang.xowikiimage['insertImage'],
- command : pluginName
+ command : pluginName,
+ icon: this.path + 'images/image.gif'
});
}
} );
var insert_the_image=function (me,src,editor) {
- editor.insertHtml("
");
+ editor.insertHtml("
");
//editor.insertHtml(me);
}
Index: openacs-4/packages/xowiki/www/resources/ckeditor/_source/plugins/xowikiimage/images/image.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/www/resources/ckeditor/_source/plugins/xowikiimage/images/Attic/image.gif,v
diff -u
Binary files differ
Index: openacs-4/packages/xowiki/www/resources/ckeditor/_source/plugins/xowikiimage/lang/de.js
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/www/resources/ckeditor/_source/plugins/xowikiimage/lang/Attic/de.js,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/xowiki/www/resources/ckeditor/_source/plugins/xowikiimage/lang/de.js 13 Sep 2012 16:06:14 -0000 1.3
+++ openacs-4/packages/xowiki/www/resources/ckeditor/_source/plugins/xowikiimage/lang/de.js 28 Feb 2013 17:13:38 -0000 1.4
@@ -1,6 +1,6 @@
CKEDITOR.plugins.setLang( 'xowikiimage', 'de', {
xowikiimage : {
- insertImage : 'Bild einf�gen'
+ insertImage : 'Bild einfügen'
}
});
Index: openacs-4/packages/xowiki/www/resources/ckeditor/plugins/xowikiimage/plugin.js
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/www/resources/ckeditor/plugins/xowikiimage/Attic/plugin.js,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/xowiki/www/resources/ckeditor/plugins/xowikiimage/plugin.js 13 Sep 2012 16:06:40 -0000 1.3
+++ openacs-4/packages/xowiki/www/resources/ckeditor/plugins/xowikiimage/plugin.js 28 Feb 2013 17:13:38 -0000 1.4
@@ -9,7 +9,6 @@
});
CKEDITOR.plugins.add( 'xowikiimage', {
- icon: this.path + 'image.gif',
lang : [ 'en', 'de' ],
init : function( editor ) {
@@ -28,7 +27,9 @@
xowikiimage_dialog.find("#insert_form").submit(function() {
var pathname = window.location.pathname;
pathname = pathname.substr(pathname.lastIndexOf("/")+1,pathname.length)
- insert_the_image(xowikiimage_dialog.find("#f_url").val().replace(/file:/g, "image:"),pathname+'/'+xowikiimage_dialog.find("#f_url").val()+'?m=download',editor);
+ insert_the_image(xowikiimage_dialog.find("#f_url").val().replace(/file:/g, "image:"),
+ pathname+'/'+xowikiimage_dialog.find("#f_url").val()+'?m=download',
+ editor);
xowikiimage_dialog.dialog("close");
return false;
});
@@ -38,14 +39,15 @@
// Register the toolbar button.
editor.ui.addButton( 'xowikiImage', {
label : editor.lang.xowikiimage['insertImage'],
- command : pluginName
+ command : pluginName,
+ icon: this.path + 'images/image.gif'
});
}
} );
var insert_the_image=function (me,src,editor) {
- editor.insertHtml("
");
+ editor.insertHtml("
");
//editor.insertHtml(me);
}
Index: openacs-4/packages/xowiki/www/resources/ckeditor/plugins/xowikiimage/images/image.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/www/resources/ckeditor/plugins/xowikiimage/images/Attic/image.gif,v
diff -u
Binary files differ
Index: openacs-4/packages/xowiki/www/resources/ckeditor/plugins/xowikiimage/lang/de.js
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/www/resources/ckeditor/plugins/xowikiimage/lang/Attic/de.js,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/xowiki/www/resources/ckeditor/plugins/xowikiimage/lang/de.js 13 Sep 2012 16:06:40 -0000 1.3
+++ openacs-4/packages/xowiki/www/resources/ckeditor/plugins/xowikiimage/lang/de.js 28 Feb 2013 17:13:38 -0000 1.4
@@ -1,6 +1,6 @@
CKEDITOR.plugins.setLang( 'xowikiimage', 'de', {
xowikiimage : {
- insertImage : 'Bild einf�gen'
+ insertImage : 'Bild einfügen'
}
});