search for: published

Displaying 20 results from an estimated 10018 matches for "published".

2011 Feb 25
2
1.8.2.4: SIP dialogs not killed?
Hi, I'm wondering if this is normal asterisk behaviour: asterisk*CLI> sip show channels Peer User/ANR Call ID Format Hold Last Message Expiry Peer 10.12.0.2 (None) 3c2f7ff2975e-wp 0x0 (nothing) No Rx: PUBLISH <guest> 10.12.0.2 (None) 3c2f7f21b71b-9q 0x0 (nothing) No
2020 Mar 23
3
SIP/2.0 489 Bad Event in reply to a PUBLISH
Hi, in these dark days of COVID-19 lockdown I'm using linphone to connect to my office asterisk system for working from home. It's going pretty well but the presence/BLF functions don't appear to work. In the linphone logs and asterisk debug I find that asterisk is rejecting linphone's PUBLISH message: <--- SIP read from UDP:10.27.128.3:5060 ---> PUBLISH sip:john at
2007 Jul 31
0
Free tutorials and Interview Questions.
Check out http://www.techhairball.com for all your technology needs. Launched just few weeks back and is already getting hundreds of hits per day. We also need Tech Web content writers wanted for http://www.techhairball.com. We will share 80% revenue with you. We need people in the following areas, knowledge of HTML will be preferred. 1. Java and related technology - 5 Authors/Web publishers 2.
2006 Jan 23
2
problem with options_for_select
Hi All, I am having a little difficulty using the options_for_select forms helper method. I have a form for an active record object book, which belongs to a publisher. Using the options_for_select is working fine as far as creating the various options, but it will not output the "selected=''selected''" bit of html needed to identify which publisher is
2008 Mar 06
3
facebook_url_rewriter not used in Publisher?
As per my last email, I''m generating links to our app outside of Facebook. Sorry for the onslaught of emails on this. I do link generation in Publisher based code as well. What I''m finding is that the Facebooker UrlRewriter doesn''t get used in Publisher. This makes sense if we assume that Publisher can be used outside of an HTTP request, and things like the
2006 Jan 23
5
Bibtex database design
...address, edition, month, # note. validates_presence_of :title, :publisher, :year end class Booklet < Publication # A work that is printed and bound, but without a named publisher or sponsoring institution. # Required field: title. Optional fields: author, howpublished, address, month, year, note. validates_presence_of :title end class InBook < Publication # A part of a book, which may be a chapter (or section or whatever) and/or a range of pages. # Required fields: author or editor, title, chapter and/or pages, publisher, year....
2006 Mar 02
8
User Authentication
I''m trying to create a simple authentication system but am failing miserably. I''m (sort of) following the "Logging In" chapter of the Agile book. Ideally, any access to http://example.com/publish (and any of its subdirectories) should redirect to http:/example.com/publish/login when there is no valid session user_id. Code so far:
2006 Jul 11
1
responds_to_parent plugin
Not sure where I can get help with this one but I getting a wierd behavior out of safari when trying to use the responds to parent plugin. Basically I have the following in my view: <div class="rightsidecontentbody"> <%= form_tag({:action => "create"}, {:multipart => "true", :target => "frame"}) %> <form
2009 Sep 07
2
using an array of strings with strsplit, issue when including a space in split criteria
Dear all, I'm having a problem understanding why a split does not occur with in the 2nd use of the function strsplit below: # text strings > txt <- c("sales to 23 August 2008 published 29 August", + "sales to 6 September 2008 published?11 September") # first use > strsplit(txt, 'published', fixed=TRUE) [[1]] [1] "sales to 23 August 2008 " " 29 August" [[2]] [1] "sales to 6 September 2008 " "?11 September" # seco...
2006 Apr 08
9
DESIGN question: We do not need damned publishers
Here is the actual design of my CMS : each Item is secured by 3 (+1) elements: readers group writers group publishers group owner readers = people who can find the item in the database and .... read it. writers = people who can add new content (create new versions or sub-pages) without making their changes visible (they can propose content). publishers = people who can change what readers
2017 Feb 16
2
How to read or relay SIP PUBLISH messages ?
Hello, I'm currently testing a so-called VQ RTCP-XR feature from a a SIP hardphone. When a phone has enabled this feature, it would send a SIP PUBLISH to its SIP Server letting this server dispatch to whatever is needs to. These messages are sent during calls but may also be sent when a call is over. At the moment, I'm using Asterisk to serve these SIP phones so my Asterisk box
2014 Jul 22
3
Question: Publishing R/S objects with WebServices (SOAP/WSDL)
Hello, Can anyone tell me if there is a package which will allow me to write a package in R, then publish the package using WebServices? The idea is that I want to be able to pass a data set into R, have R perform the calculations, then send the result back to either a .Net application or a LIMS BASIC application. So far I see many packages that allow R to consume WebServices, but I haven't
2006 Mar 15
4
New RadRails tutorial using AWDWR book
...ammer.com/titles/rails/index.html>book, but with two extensions. The first, given my CMMI and RUP background, was to embellish a few of the tutorial sections (and parts of the resulting wiki) with rather a lot to say about ***Object Oriented Process<http://wiki.awebfactory.com.ar/awebfactory/published/ObjectOrientedProcess> *, which I believe is joined at the hip to Rails, given that it is a patterns oriented (MVC, and others too) framework. I do chide AWDWR<http://www.pragmaticprogrammer.com/titles/rails/index.html>a bit for its downplaying of process (Agile or otherwise), although I...
2008 Mar 24
2
render not able to locate template in publisher
Hi guys, I have a publisher called UserPublisher setup in models directory of my app. The reason I have it in a model is because its then possible for me to invoke publisher methods in after_callbacks of my other models, just the way we do it for ActionMailer. My problem is that when I try to update a users profile specifying location of the view template as a paramater to "profile"
2009 Sep 01
13
Function Testing Reloading Fixtures before assertion
Hey Everyone, I have a function test the is failing (despite the fact the function actually works in the application). I was looking for some debug advice on how to find my problem. Here is the test: def test_should_delete_word assert_equal ''published'', words(:one).status debugger delete :destroy, :id => words(:one).to_param assert_equal ''deleted'', words(:one).status end It fails on the last with: <"deleted"> expected but was <"published">. //My fixture: one: word:...
2006 Apr 11
2
Mapping contained objects to forms?
I''m having lots of trouble trying to map an object that contains another object to the right forms param. So say I have Book which has one Publisher. Here is what I''ve tried: <p><label for="book_publisher">Publisher</label><br/> <%= text_field ''book'', ''publisher.name'' %> </p> Then
2009 Sep 24
4
Action Controller ::MethodNotAllowed
Hi, Iam getting the following error ActionController::MethodNotAllowed Only get, put and delete requests are allowed. Actually, Iam trying to have multiple actions for a form to create new record. The actions for the form are cancel, save, publish and preview. here''s the config/routes.rb file code snippet for the relevant controller - Events map.resources :events, :member =>
2006 Feb 12
6
Including another helper
I need to include another helper module apart from the normal two (ApplicationHelper and [controllername]Helper). The inclusion needs to be dynamic and based on external parameters (ie what helper that get included differ from request to request). Is it possible? How? /Marcus
2020 Mar 23
0
SIP/2.0 489 Bad Event in reply to a PUBLISH
On Mon, Mar 23, 2020 at 7:15 AM John Hughes <john at calva.com> wrote: > Hi, in these dark days of COVID-19 lockdown I'm using linphone to > connect to my office asterisk system for working from home. > > It's going pretty well but the presence/BLF functions don't appear to work. > > In the linphone logs and asterisk debug I find that asterisk is > rejecting
2017 Feb 16
2
How to read or relay SIP PUBLISH messages ?
2017-02-16 14:27 GMT+01:00 Joshua Colp <jcolp at digium.com>: > On Thu, Feb 16, 2017, at 09:11 AM, Olivier wrote: > > Hello, > > > > I'm currently testing a so-called VQ RTCP-XR feature from a a SIP > > hardphone. > > > > When a phone has enabled this feature, it would send a SIP PUBLISH to its > > SIP Server letting this server dispatch to