hi everybody, i have purchased arduino uno r3 in south africa , don't have stores sell isp programmer, , make things worse no sparkfun or adafruit products sold in city don't have many options (not helpful know). now here's dilemma, constructing 2 barebones arduino's based on rbbb (really bare bones board) design (which don't here either resorted constructing them myself). hold of blank atmega328-pu chips not pico power version! so in desperate need of bootloading these chips uno bootloader, aware (after reading through forums) of fact signatures atmega328-pu , atmega328p-pu different. have followed several tutorials using arduino isp programmer no success. followed tutorial http://www.gammon.com.au/forum/?id=11635 hoping work atmega328-pu assuming works atmega328p-pu chip. i tried altering avrdude.conf , boards.txt suggested in thread http://arduino.cc/forum/index.php?topic=58670.0 : avrdude.conf code: [select] #------------------------------------...
hi troops, my application has core set of items (e.g. products), gets passed between various view layers. each layer wraps given input list in listcollectionview, , adds own sorting , filtering. that way might have construct similar to new listcollectionview(new listcollectionview(new arraycollection())) but, of course, sorting/filtering added on each level. now when call itemupdated() on root arraycollection, change not propagate hierarchy of lists. it seems each wrapping, have call itemupdated(), such as: ac.itemupdated(product); ac.itemupdated(product); to make top-most listcollectionview update. single call not trick. debugging code gave me insight initial collectionevent.update event ac converted move event listcollectionview. second call makes lcv realize item wouldn't move anymore , not convert event, next lcv can item-moved update of localindex. yes, yes, complicated. feedback welcome, of course for single o...
hello, so here's route.php: code: select all function componentbuildroute(&$query) { $segments = array(); if (isset($query['view'])) { $segments[] = $query['view']; unset($query['view']); } if(isset($query['id'])) { $segments[] = $query['id']; unset($query['id']); } return $segments; } function componentparseroute($segments) { $vars = array(); $vars['view'] = $segments[0]; if (count($segments) > 1) { $vars['id'] = $segments[1]; } return $vars; } and works good! the url gets like: /menu-item-name/item/id but how can use alias? tried digging com_content didn't see use of alias there, how did make automatical...
Comments
Post a Comment