Home
last modified time | relevance | path

Searched refs:sValue (Results 1 – 19 of 19) sorted by relevance

/plugin/wysiwyg/fckeditor/editor/_source/classes/
H A Dfcktoolbarspecialcombo.js86 var sValue = FCK.ToolbarSet.CurrentInstance.Commands.GetCommand( this.CommandName ).GetState() ;
90 if ( sValue != FCK_TRISTATE_DISABLED )
95 this.RefreshActiveItems( this._Combo, sValue ) ;
98 if ( this._LastValue !== sValue)
100 this._LastValue = sValue ;
102 if ( !sValue || sValue.length == 0 )
108 FCKToolbarSpecialCombo_RefreshActiveItems( this._Combo, sValue ) ;
/plugin/wysiwyg/fckeditor/
H A Dfckeditor.pl125 $sValue = $Config{$sKey};
132 $v = &specialchar_cnv($sValue);
133 if($sValue eq "true") {
135 } elsif($sValue eq "false") {
H A Dfckeditor.py147 sValue = self.Config[sKey]
152 if (sValue):
154 v = escape(sValue)
155 if (sValue == "true"):
157 elif (sValue == "false"):
H A Dfckeditor_php5.php141 foreach ( $this->Config as $sKey => $sValue )
148 if ( $sValue === true )
150 else if ( $sValue === false )
153 $sParams .= $this->EncodeConfig( $sKey ) . '=' . $this->EncodeConfig( $sValue ) ;
H A Dfckeditor_php4.php151 foreach ( $this->Config as $sKey => $sValue )
158 if ( $sValue === true )
160 else if ( $sValue === false )
163 $sParams .= $this->EncodeConfig( $sKey ) . '=' . $this->EncodeConfig( $sValue ) ;
/plugin/jmol2/jmol/
H A DJmol.js1293 function jmolGetPropertyAsArray(sKey,sValue,targetSuffix) { argument
1294 return _jmolEvalJSON(jmolGetPropertyAsJSON(sKey,sValue,targetSuffix),sKey)
1297 function jmolGetPropertyAsString(sKey,sValue,targetSuffix) { argument
1299 if(!sValue)sValue=""
1300 return (applet ? applet.getPropertyAsString(sKey,sValue) + "" : "")
1303 function jmolGetPropertyAsJSON(sKey,sValue,targetSuffix) { argument
1304 if(!sValue)sValue = ""
1307 return (applet ? applet.getPropertyAsJSON(sKey,sValue) + "" : "")
1313 function jmolGetPropertyAsJavaObject(sKey,sValue,targetSuffix) { argument
1314 if(!sValue)sValue = ""
[all …]
H A DJmolApplet0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/obrador/ javax/ ...
H A DJmolAppletSigned0.jarMETA-INF/MANIFEST.MF META-INF/SELFSIGN.SF META-INF/SELFSIGN ...
H A DJmolApplet.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jmol/ org/ ...
H A DJmolAppletSigned.jarMETA-INF/MANIFEST.MF META-INF/SELFSIGN.SF META-INF/SELFSIGN ...
/plugin/issuetracker/
H A Dwysiwyg_editor.js2 function formatDoc(sCmd, sValue) { argument
3 document.execCommand(sCmd, false, sValue);
/plugin/wysiwyg/fckeditor/editor/dialog/fck_select/
H A Dfck_select.js119 var sValue = oOption.value ;
123 oOption = AddComboOption( combo, sText, sValue, null, iFinalIndex ) ;
/plugin/fckg/fckeditor/editor/dialog/fck_select/
H A Dfck_select.js119 var sValue = oOption.value ;
123 oOption = AddComboOption( combo, sText, sValue, null, iFinalIndex ) ;
/plugin/wysiwyg/fckeditor/editor/dialog/fck_link/
H A Dfck_link.js442 var sValue = oFeaturesMatch[2] ;
443 if ( sValue == ( 'yes' || '1' ) )
445 else if ( ! isNaN( sValue ) && sValue != 0 )
446 oFeatures[ oFeaturesMatch[1] ] = sValue ;
/plugin/dokumicrobugtracker/js/
H A Djquery.dataTables.js6190 var sValue = "{";
6198 sValue += '"aaSorting":[ ';
6203 sValue = sValue.substring(0, sValue.length-1);
6204 sValue += "],";
6212 sValue = sValue.substring(0, sValue.length-1);
6213 sValue += "],";
6220 sValue = sValue.substring(0, sValue.length-1);
6221 sValue += "]";
6229 sValue = sTmp;
6233 sValue += "}";
[all …]
/plugin/switchpanel/
H A Dsyntax.php131 $sValue = trim( substr( $sOptions, 0, $iPosStop ) );
135 $sValue = trim( substr( $sOptions, 0, $iPosStop ), '"' );
149 $oOptions[ $sKey ] = $sValue;
/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfck.js476 var sValue = '' ;
484 sValue = this.EditorDocument.queryCommandValue( commandName ) ;
488 return sValue ? sValue : '' ;
/plugin/fckg/fckeditor/editor/dialog/fck_link/
H A Dfck_link.js824 var sValue = oFeaturesMatch[2] ;
825 if ( sValue == ( 'yes' || '1' ) )
827 else if ( ! isNaN( sValue ) && sValue != 0 )
828 oFeatures[ oFeaturesMatch[1] ] = sValue ;
/plugin/aichat/vendor/vanderlee/php-sentence/doc/resources/
H A Dcombined.js416 // sValue: the first matching result
417 function autoFill(q, sValue){ argument
422 $input.val($input.val() + sValue.substring(lastWord(previousValue).length));
424 $(input).selection(previousValue.length, previousValue.length + sValue.length);