i thought template problem, failing seems coming generated content. seems
tag not being closed right @ end of content. there,
not. w3c validator:
line 311 column 14: end tag "tr" omitted, omittag no specified.
code: select all
</td></table></td></tr></table> <!-- code main body .line 237 column 92: start tag here.
code: select all
...0%" cellpadding="0" cellspacing="0"><tr><td valign="top" width="50%">
i give entire code if has idea.
it should 1.0.4 becaue updated sites using fantastico other day, checked filesize of content.html.php , not same other site validating copied file on one. problem still remains though.... ideas?!
ok, got validate i'm still wondering if expected behaviour or not. site pretty new , have 2 news items. 'home' menu item set on (i think default) 1 leading, 2 intro, , 2 columns. i'm thinking because content maybe expecting intro item didn't close
tag ended closing well. changed 0 leading , it's validated.
is rare have site 2 news items should forget or relatively easy fix assuming logic using correct?
Popular posts from this blog
hi, i want install mambelfish 1.5 component in joomla! 1.0.4 stable [ sundial ] site, reason following error: failed create directory "/home/virtual/site13/fst/var/www/html/components/com_mambelfish/" i new joomla! , still not familiar it. great if build multilingual sites using joomla!. just clarify... media/ writeable administrator/components/ writeable components/ writeable images/stories/ writeable how install component? use upload package file or use install directory ? Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components
basically little observation made when accessing arrays out of sequence. i had inside isr, , affected performance worse. found pretty strange code little bit of isr. tried have array element 2 @ top (not important @ of course). code: [select] for ( int x=0 ; x<4 ; x++ ) { for ( int y=0 ; y<4 ; y++ ) { int cx = x+1; int cy = y+1; int fivecy = 4 - y; // 5-cy face[2][x][y] = cube[cx][fivecy][0]; // top (face 2) face[0][x][y] = cube[5][cx][cy]; face[1][x][y] = cube[cx][0][cy]; face[3][x][y] = cube[0][cx][fivecy]; face[4][x][y] = cube[fivecy][5][5-cx]; face[5][x][y] = cube[cx][cy][5]; // bottom (face 5) } } putting in sequence made faster again. thought wouldn't matter, guess compiler optimizations when arrays accessed in sequence? i have since optimized isr ~40% latency, these 2 versions (array in sequence vs out-of-sequence), had latency of 53 timer2 clock cycles (86% latency) , (see...
i'm starting write larger sketches , finding out how important organization of code larger program becomes. i'm using arduino ide compsose code , started using tabs break code semi-managable chunks. when named tabs didn't give extention names (didn't know could). ide treat code if 1 big file. then learned little making them header files , "#include"ing them main sketch enables me isolate different sections of code , localize variables within them. useful! somewhere in learning section on arduino site i came accross - tabs, multiple files, , compilation: allows manage sketches more 1 file (each of appears in own tab). these can normal arduino code files (no extension), c files (.c extension), c++ files (.cpp), or header files (.h). my question is, difference/use of using .c or .cpp extentions in tabs of arduino ide. there benifit in doing that. know libraries have have both .h , .c files. better off learning how write libraries. which, way, li...
Comments
Post a Comment