This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="hidden"> | |
| <script type="text/javascript"> | |
| <!--//--><![CDATA[//><!-- | |
| var images = new Array() | |
| function preload() { | |
| for (i = 0; i < preload.arguments.length; i++) { | |
| images[i] = new Image() | |
| images[i].src = preload.arguments[i] | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // fieldname, warningname, remainingname, maxchars | |
| function CheckFieldLength(fn,wn,rn,mc) { | |
| var len = fn.value.length; | |
| if (len > mc) { | |
| fn.value = fn.value.substring(0,mc); | |
| len = mc; | |
| } | |
| document.getElementById(wn).innerHTML = len; | |
| document.getElementById(rn).innerHTML = mc - len; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| cod_gt, cod_pessoa, COUNT(*) | |
| FROM | |
| pessoa_gt | |
| GROUP BY | |
| cod_pessoa, cod_gt | |
| HAVING | |
| COUNT(*) > 1 | |
| ORDER BY cod_gt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git update-index --assume-unchanged [path] | |
| git update-index --no-assume-unchanged filename |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php $prjs = Projeto::$momentos; $length = count($prjs) ?> | |
| <?php for($i=0 ; $i < $length; $i+=3): ?> | |
| <div class="row"> | |
| <?php if($i < $length):?> | |
| <div class="span4 view"><?php echo CHtml::link( $prjs[$i], array("/projeto/index",'situacao'=>$i) )?></div> | |
| <?php endif;?> | |
| <?php if($i+1 < $length):?> | |
| <div class="span4 view"><?php echo CHtml::link( $prjs[$i+1], array("/projeto/index",'situacao'=>$i+1) )?></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- To embed the player in your own custom webpage, begin copying below this line --> | |
| <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="640" height="496" codebase="http://www.apple.com/qtactivex/qtplugin.cab"> | |
| <param name="QTSRC" value="rtsp://177.10.112.192/conf_h263_g711u_512000__2700%20-%20AGU"> | |
| <param name="SRC" value="http://177.10.112.192/conference.mov"> | |
| <param name="AUTOPLAY" value="true"> | |
| <param name="CONTROLLER" value="true"> | |
| <param name="QTSRCDONTUSEBROWSER" value="true"> | |
| <param name="SCALE" value="ToFit"> | |
| <embed width="640" height="496" type="video/quicktime" qtsrcdontusebrowser="true" scale="ToFit" qtsrc="rtsp://177.10.112.192/conf_h263_g711u_512000__2700%20-%20AGU" src="http://177.10.112.192/conference.mov" pluginspage="http://www.apple.com/quicktime/download/"> | |
NewerOlder