Displaying 8 results from an estimated 8 matches for "view_product".
2006 May 04
3
@products["car"] is not being recognized in my tests!! help
@products["car"] is not being recognized in my tests:
class ProductsControllerTest < Test::Unit::TestCase
fixtures :products
def test_view_product
post :view_product, :id=>@products["car"].id
assert_template "view_product"
...
end
end
products.yml :
car:
id:1
name:test
Does anyone have any idea why its not working?
Im having to do this instead, which is not ideal:
post :view_product, :id=>1
Tha...
2005 Jul 27
3
SIP ATA's as "house" phones
...that analog card extension which rang to an ACD
group that hunted various people who were logged in.
Is there an equivilent way to do this with Asterisk and a SIP ATA? We're
trying to use a Sipura 1001 ATA with our Viking door phone (model info
here:
http://www.vikingelectronics.com/products/view_product.php?pid=104).
Any suggestions?
Best Regards,
Colin Stefani
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050727/c5c43db9/attachment.htm
2009 Sep 24
6
Connecting home intercom to Asterisk?
Hello
I assume I'm not the first one to think about this: Is it possible to
connect an intercom and/or door bell to Asterisk, so that I can get an
e-mail that someone rang my place while I was out?
Even better: If used for a doctor's office, it'd be cool if patients
could type their Social Security Number on a keypad, which would open
the door and notify Asterisk which would then
2008 Feb 20
5
ata device but for a soundcard
I am looking for an ATA like device but instead of VOIP to analog phone
I want VOIP to low level audio out. Something that looks like a sound card
output.
I know I can use cheap PC's but that then you have HD's to setup etc...
HD failures etc...
Anyone know of something like that?
Jerry
2009 Jun 04
0
[LLVMdev] LLVM frontend supporting arbitrary bit-width integral datatypes
Hi Adam,
John is right, the TCE stuff would be useful for you. Our
compiler targets a processor template that the designer can
populate pretty freely. The compiler then reads the architecture
description and creates an LLVM backend on the fly.
Please don't hesitate to get in touch with us if you have
questions.
--
Pertti
2009 Jun 02
3
[LLVMdev] LLVM frontend supporting arbitrary bit-width integral datatypes
Hello gyus,
I am working on a project, where we are trying to create a development environment
for new ASIP processor design. Part of this project is a compiler generator,
where we would like to generate C compiler from some instruction description.
To keep it short, let's say, that in each instruction's semantics
is described by some C code. What I would like to do is to compile this
2007 Sep 04
6
Overhead paging over IP...
I have a customer that has two buildings that are connected with a
fiber link. We have a single Asterisk server to cover both buildings.
Now the customer went and bought an overhead paging system for the
remote building and they want to integrate it with Asterisk. Is there a
device that can connect over IP or an ATA that has an audio output port?
The buildings are about 500 meters apart so we
2009 Jun 24
4
[LLVMdev] LLVM frontend supporting arbitrary bit-width integral datatypes
...he architecture
> description and creates an LLVM backend on the fly.
>
> Please don't hesitate to get in touch with us if you have
> questions.
Hello,
thank you for your answers, in fact, the TCE project is quite similar to our project Lissom (http://www.fit.vutbr.cz/research/view_product.php.en?id=52¬itle=1), I will take a closer look at it.
One problem, I was trying to solve was, that I need to declare variables of let's say 5-bit width like 'i5 var',
the maximal bit-width may be limited to 64 bits. I need such variables to represent instruction's operands...