Index: lams_central/web/includes/javascript/etherpad.js
===================================================================
diff -u
--- lams_central/web/includes/javascript/etherpad.js (revision 0)
+++ lams_central/web/includes/javascript/etherpad.js (revision 1b4ca86adcfc514193fea797c0850e9985297d34)
@@ -0,0 +1,113 @@
+(function( $ ){
+
+ $.fn.pad = function( options ) {
+ var settings = {
+ 'host' : 'http://beta.etherpad.org',
+ 'baseUrl' : '/p/',
+ 'showControls' : false,
+ 'showChat' : false,
+ 'showLineNumbers' : false,
+ 'userName' : 'unnamed',
+ 'lang' : '',
+ 'useMonospaceFont' : false,
+ 'noColors' : false,
+ 'userColor' : false,
+ 'hideQRCode' : false,
+ 'alwaysShowChat' : false,
+ 'width' : 100,
+ 'height' : 100,
+ 'border' : 0,
+ 'borderStyle' : 'solid',
+ 'toggleTextOn' : 'Disable Rich-text',
+ 'toggleTextOff' : 'Enable Rich-text',
+ 'plugins' : {},
+ 'rtl' : false
+ };
+
+ var $self = this;
+ if (!$self.length) return;
+ if (!$self.attr('id')) throw new Error('No "id" attribute');
+
+ var useValue = $self[0].tagName.toLowerCase() == 'textarea';
+ var selfId = $self.attr('id');
+ var epframeId = 'epframe'+ selfId;
+ // This writes a new frame if required
+ if ( !options.getContents ) {
+ if ( options ) {
+ $.extend( settings, options );
+ }
+
+ var pluginParams = '';
+ for(var option in settings.plugins) {
+ pluginParams += '&' + option + '=' + settings.plugins[option]
+ }
+
+ var iFrameLink = '';
+
+
+ var $iFrameLink = $(iFrameLink);
+
+ if (useValue) {
+ var $toggleLink = $(''+ settings.toggleTextOn +'').click(function(){
+ var $this = $(this);
+ $this.toggleClass('active');
+ if ($this.hasClass('active')) $this.text(settings.toggleTextOff);
+ $self.pad({getContents: true});
+ return false;
+ });
+ $self
+ .hide()
+ .after($toggleLink)
+ .after($iFrameLink)
+ ;
+ }
+ else {
+ $self.html(iFrameLink);
+ }
+ }
+
+ // This reads the etherpad contents if required
+ else {
+ var frameUrl = $('#'+ epframeId).attr('src').split('?')[0];
+ var contentsUrl = frameUrl + "/export/html";
+ var target = $('#'+ options.getContents);
+
+ // perform an ajax call on contentsUrl and write it to the parent
+ $.get(contentsUrl, function(data) {
+
+ if (target.is(':input')) {
+ target.val(data).show();
+ }
+ else {
+ target.html(data);
+ }
+
+ $('#'+ epframeId).remove();
+ });
+ }
+
+
+ return $self;
+ };
+})( jQuery );
Fisheye: Tag 1b4ca86adcfc514193fea797c0850e9985297d34 refers to a dead (removed) revision in file `lams_tool_doku/web/includes/javascript/etherpad.js'.
Fisheye: No comparison available. Pass `N' to diff?