Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

ydn-javascript · Yahoo! User Interface Library Group

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 12955
  • Category: JavaScript
  • Founded: Dec 15, 2005
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 52383 - 52448 of 52481   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#52383 From: "tomaszdurka" <tdurka@...>
Date: Fri Jan 29, 2010 1:51 pm
Subject: RTE-special character under alt+z, alt+shift+Z
tomaszdurka
Send Email Send Email
 
Hai,

Question like in topic. I am to use yui-rte for Polish language based sites and
need to support letter "¿" (alt+z). What is the way to unmap current key-binding
which works as ctrl+home.
Would be grateful for any pointers.

Thanks,
Tomasz

#52386 From: "Robert" <kajvin5601@...>
Date: Sun Jan 31, 2010 3:36 pm
Subject: YUI Calendar automatic open events in DW SpryHTMLDataSet
kajvin5601
Send Email Send Email
 
Hi I'm not a js script encoder, I will be happy if anyone can help me, and I
search this forum forum for a answer.

As it is now the events in my SpryHTMLDataSet open then I click on the date, and
that's OK but what I will have is, after the YUI Calendar open the today events
automatic open I a table below the calendar, but I would still keep the option
to choose date to look at the events for that day, and then I deselect the date
it reset to the today's events.
-----------------------------------------------------------
This is the code I'm use on my page now.

  <div id="yuicalendar1"></div>
     <script type="text/javascript">
// BeginWebWidget YUI_Calendar: yuicalendar1

   (function() {
     var cn = document.body.className.toString();
     if (cn.indexOf('yui-skin-sam') == -1) {
       document.body.className += " yui-skin-sam";
     }
   })();

   var inityuicalendar1 = function() {
     var yuicalendar1 = new YAHOO.widget.Calendar("yuicalendar1");

     // The following event subscribers demonstrate how to handle
     // YUI Calendar events, specifically when a date cell is
     // selected and when it is unselected.
     //
     // See: http://developer.yahoo.com/yui/calendar/ for more
     // information on the YUI Calendar's configurations and
     // events.
     //
     // The YUI Calendar API cheatsheet can be found at:
     // http://yuiblog.com/assets/pdf/cheatsheets/calendar.pdf
     //
     //--- begin event subscribers ---//
     yuicalendar1.selectEvent.subscribe(selectHandler, yuicalendar1, true);
     yuicalendar1.deselectEvent.subscribe(deselectHandler, yuicalendar1, true);
     //--- end event subscribers ---//

     yuicalendar1.render();
   }

   function selectHandler(event, data) {
   var formattedDateString = data[0][0][1] + "/" + data[0][0][2] + "/" +
data[0][0][0];
   var r = ordo.findRowsWithColumnValues({"Date": formattedDateString }, true);
   var region = Spry.Data.getRegion("classDetail");
   if(r){
	   ordo.setCurrentRow(r.ds_RowID);
	   region.setState("showClass", true);
   } else {
   region.setState("ready", true);
   }
   // The JavaScript function subscribed to yuicalendar1.  It is called when
   // a date cell is selected.
   //
   // alert(event) will show an event type of "Select".
   // alert(data) will show the selected date as [year, month, date].
   };

   function deselectHandler(event, data) {
   // The JavaScript function subscribed to yuicalendar1.  It is called when
   // a selected date cell is unselected.
   };

   // Create the YUI Calendar when the HTML document is usable.
   YAHOO.util.Event.onDOMReady(inityuicalendar1);

// EndWebWidget YUI_Calendar: yuicalendar1
     </script>
     <br class="clearfloat" /><br />
      <div spry:detailregion="ordo" id="classDetail">
<div spry:state="showClass">

   <table width="220">
     <tr>
       <td width="72">{datum}</td>
       <td width="136">{dag}</td>
     </tr>
     <tr>
       <td colspan="2">{Liturgisk_dag}</td>
     </tr>
     <tr>
       <td colspan="2">{Liturisk_färg} </td>
     </tr>
     <tr>
       <td colspan="2" class="tdRubrik">Mässtider/(int.) Vår Frälsares kyrka</td>
       </tr>
     <tr>
       <td height="33" colspan="2">{Tider_Gudstjänst} </td>
       </tr>
     <tr>
       <td colspan="2" class="tdRubrik">Läsningar</td>
       </tr>
     <tr>
       <td colspan="2">{Läsningar} </td>
       </tr>
     <tr>
       <td colspan="2" class="tdRubrik">Dagens aktivitet Vår Frälsares kyrka</td>
       </tr>
     <tr>
       <td colspan="2">{Aktiviteter}</td>
       </tr>
     <tr>
       <td colspan="2" class="tdRubrik">Kollekt</td>
       </tr>
     <tr>
       <td colspan="2">{Kollekt} </td>
       </tr>

     <tr>
       <td colspan="2" class="tdRubrik">Övrigt</td>
       </tr>
     <tr>
       <td colspan="2">{ordo::Övrigt}</td>
       </tr>
   </table>
</div>
       <div spry:state="ready">
       Ordo/Veckonytt för denna dag/månad är inte är inte gjord!
   </div>
<!--end Spry region--></div>

<!--end #calendar--></div>

#52389 From: "wizard_files3" <wizard_files3@...>
Date: Tue Feb 2, 2010 10:21 pm
Subject: How to know when YUI finished rendering
wizard_files3
Send Email Send Email
 
Hi. I know there exists onDomReady method, but is there a method which would
tell me that YUI has finished rendering(not just ready in DOM) all of its
datatables?

Something like this does not work:

YAHOO.util.Event.onAvailable(this.myDataTable2.getId( ),showTables);


//considering that above it is defined as:
this.myDataTable2 = new YAHOO.widget.DataTable("errorMarkup",myColumnDefs2,
this.myDataSource2,{sortedBy:{key:"uuid", dir:YAHOO.widget.DataTable.CLASS_DESC}
<% if(staterrors!=null && staterrors.size()>6) {%>,scrollable:true,
height:"10em"<%}%>});

#52390 From: Satyam <satyam@...>
Date: Tue Feb 2, 2010 10:30 pm
Subject: Re: How to know when YUI finished rendering
satyamutsa
Send Email Send Email
 
I think that postRenderEvent is probably the closest to the end.

El 02/02/2010 23:21, wizard_files3 escribió:
Hi. I know there exists onDomReady method, but is there a method which would tell me that YUI has finished rendering(not just ready in DOM) all of its datatables?
Something like this does not work:
YAHOO.util.Event.onAvailable(this.myDataTable2.getId( ),showTables);
//considering that above it is defined as:
this.myDataTable2 = new YAHOO.widget.DataTable("errorMarkup",myColumnDefs2, this.myDataSource2,{sortedBy:{key:"uuid", dir:YAHOO.widget.DataTable.CLASS_DESC} <% if(staterrors!=null && staterrors.size()>6) {%>,scrollable:true, height:"10em"<%}%>});
------------------------------------
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ydn-javascript/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/ydn-javascript/join
(Yahoo! ID required)
<*> To change settings via email:
ydn-javascript-digest@yahoogroups.com ydn-javascript-fullfeatured@yahoogroups.com
<*> To unsubscribe from this group, send an email to:
ydn-javascript-unsubscribe@yahoogroups.com
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
No virus found in this incoming message. Checked by AVG - www.avg.com Version: 9.0.733 / Virus Database: 271.1.1/2663 - Release Date: 02/02/10 08:35:00

#52391 From: "wizard_files3" <wizard_files3@...>
Date: Tue Feb 2, 2010 11:24 pm
Subject: Re: How to know when YUI finished rendering
wizard_files3
Send Email Send Email
 
Strangly enough event does not get fired up:

this.myDataTable2.subscribe( 'postRenderEvent',showAllTables );

--- In ydn-javascript@yahoogroups.com, Satyam <satyam@...> wrote:
>
> I think that postRenderEvent is probably the closest to the end.
>
> El 02/02/2010 23:21, wizard_files3 escribió:
> > Hi. I know there exists onDomReady method, but is there a method which would
tell me that YUI has finished rendering(not just ready in DOM) all of its
datatables?
> >
> > Something like this does not work:
> >
> > YAHOO.util.Event.onAvailable(this.myDataTable2.getId( ),showTables);
> >
> >
> > //considering that above it is defined as:
> > this.myDataTable2 = new YAHOO.widget.DataTable("errorMarkup",myColumnDefs2,
this.myDataSource2,{sortedBy:{key:"uuid",
dir:YAHOO.widget.DataTable.CLASS_DESC}<% if(staterrors!=null&& 
staterrors.size()>6) {%>,scrollable:true, height:"10em"<%}%>});
> >
> >
> >
> > ------------------------------------
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
> > No virus found in this incoming message.
> > Checked by AVG - www.avg.com
> > Version: 9.0.733 / Virus Database: 271.1.1/2663 - Release Date: 02/02/10
08:35:00
> >
> >
>

#52392 From: Satyam <satyam@...>
Date: Wed Feb 3, 2010 7:40 am
Subject: Re: Re: How to know when YUI finished rendering
satyamutsa
Send Email Send Email
 
There is also renderEvent, that had been there since the start, postRenderEvent is new, I never tried it myself but it should be closer to the end, as you requested.  It would be interesting to know if renderEvent works and postRenderEvent does not.  renderEvent does work so if it doesn't work for you, then the problem is with your code.  Try that out and if it works with renderEvent and not with postRenderEvent, let us know.

El 03/02/2010 0:24, wizard_files3 escribió:
Strangly enough event does not get fired up:
this.myDataTable2.subscribe( 'postRenderEvent',showAllTables );
--- In ydn-javascript@yahoogroups.com, Satyam <satyam@...> wrote:
I think that postRenderEvent is probably the closest to the end.
El 02/02/2010 23:21, wizard_files3 escribió:
Hi. I know there exists onDomReady method, but is there a method which would tell me that YUI has finished rendering(not just ready in DOM) all of its datatables?
Something like this does not work:
YAHOO.util.Event.onAvailable(this.myDataTable2.getId( ),showTables);
//considering that above it is defined as:
this.myDataTable2 = new YAHOO.widget.DataTable("errorMarkup",myColumnDefs2, this.myDataSource2,{sortedBy:{key:"uuid", dir:YAHOO.widget.DataTable.CLASS_DESC}<% if(staterrors!=null&& staterrors.size()>6) {%>,scrollable:true, height:"10em"<%}%>});
------------------------------------
Yahoo! Groups Links
No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 9.0.733 / Virus Database: 271.1.1/2663 - Release Date: 02/02/10 08:35:00

------------------------------------
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ydn-javascript/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/ydn-javascript/join
(Yahoo! ID required)
<*> To change settings via email:
ydn-javascript-digest@yahoogroups.com ydn-javascript-fullfeatured@yahoogroups.com
<*> To unsubscribe from this group, send an email to:
ydn-javascript-unsubscribe@yahoogroups.com
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
No virus found in this incoming message. Checked by AVG - www.avg.com Version: 9.0.733 / Virus Database: 271.1.1/2663 - Release Date: 02/02/10 08:35:00

#52393 From: Gia Raz <yui_ge@...>
Date: Wed Feb 3, 2010 9:39 am
Subject: Centering the menu items in a menubar
yui_ge
Send Email Send Email
 
Hi all,

How can I center the menu items in a menubar?
The code below center menubar items in browser's window and hides menubar

<div id="naviagation">
  <div id="mymenubar" class="yuimenubar yuimenubarnav" style="position: absolute;">
    <div class="bd">
    ....
    </div>
  </div>
</div>

....
 
 var oMenuBar = new YAHOO.widget.MenuBar("mymenubar",
     {autosubmenudisplay: true, position: "dynamic", visible:true,fixedcenter:true,
     constraintoviewport: true,container:"naviagation" });
    
Any help, please?

Thanks,

gia


#52394 From: Satyam <satyam@...>
Date: Wed Feb 3, 2010 10:43 am
Subject: Re: Centering the menu items in a menubar
satyamutsa
Send Email Send Email
 
As you've noticed, YUI controls are generously laced with classNames.  With some sort of DOM inspector you need to find out what style applies to the elements you want to center and override that style with the settings you want.  This article uses DataTable as an example, but the principle and the tools apply just as well:

http://www.satyam.com.ar/yui/widgetstyles.html

Satyam

El 03/02/2010 10:39, Gia Raz escribió:
Hi all,

How can I center the menu items in a menubar?
The code below center menubar items in browser's window and hides menubar

<div id="naviagation">
  <div id="mymenubar" class="yuimenubar yuimenubarnav" style="position: absolute;">
    <div class="bd">
    ....
    </div>
  </div>
</div>

....
 
 var oMenuBar = new YAHOO.widget.MenuBar("mymenubar",
     {autosubmenudisplay: true, position: "dynamic", visible:true,fixedcenter:true,
     constraintoviewport: true,container:"naviagation" });
    
Any help, please?

Thanks,

gia

No virus found in this incoming message. Checked by AVG - www.avg.com Version: 9.0.733 / Virus Database: 271.1.1/2664 - Release Date: 02/02/10 20:35:00

#52395 From: Gia Raz <yui_ge@...>
Date: Wed Feb 3, 2010 12:05 pm
Subject: Re: Centering the menu items in a menubar
yui_ge
Send Email Send Email
 
Thank for attention.
The position of a menubaritem is controled by

.yuimenubaritem {
    float: left;
}

so I can move menubaritems inside of menubar left or right only?!


From: Satyam <satyam@...>
To: ydn-javascript@yahoogroups.com
Sent: Wed, February 3, 2010 2:43:16 PM
Subject: Re: [ydn-javascript] Centering the menu items in a menubar

 

As you've noticed, YUI controls are generously laced with classNames.  With some sort of DOM inspector you need to find out what style applies to the elements you want to center and override that style with the settings you want.  This article uses DataTable as an example, but the principle and the tools apply just as well:

http://www.satyam. com.ar/yui/ widgetstyles. html

Satyam

El 03/02/2010 10:39, Gia Raz escribió:

Hi all,

How can I center the menu items in a menubar?
The code below center menubar items in browser's window and hides menubar

<div id="naviagation">
  <div id="mymenubar" class="yuimenubar yuimenubarnav" style="position: absolute;">
    <div class="bd">
    ....
    </div>
  </div>
</div>

....
 
 var oMenuBar = new YAHOO.widget. MenuBar(" mymenubar" ,
     {autosubmenudisplay : true, position: "dynamic", visible:true, fixedcenter: true,
     constraintoviewport : true,container: "naviagation" });
    
Any help, please?

Thanks,

gia

No virus found in this incoming message. Checked by AVG - www.avg.com
Version: 9.0.733 / Virus Database: 271.1.1/2664 - Release Date: 02/02/10 20:35:00



#52396 From: Satyam <satyam@...>
Date: Wed Feb 3, 2010 12:16 pm
Subject: Re: Centering the menu items in a menubar
satyamutsa
Send Email Send Email
 
I am not sure what effect you are looking for, but I thought it was text-align.  Anyway, the best thing to do is to use the DOM to change the styles and see the effect right there on the browser.

Satyam

El 03/02/2010 13:05, Gia Raz escribió:
Thank for attention.
The position of a menubaritem is controled by

.yuimenubaritem {
    float: left;
}

so I can move menubaritems inside of menubar left or right only?!


From: Satyam <satyam@...>
To: ydn-javascript@yahoogroups.com
Sent: Wed, February 3, 2010 2:43:16 PM
Subject: Re: [ydn-javascript] Centering the menu items in a menubar

 

As you've noticed, YUI controls are generously laced with classNames.  With some sort of DOM inspector you need to find out what style applies to the elements you want to center and override that style with the settings you want.  This article uses DataTable as an example, but the principle and the tools apply just as well:

http://www.satyam. com.ar/yui/ widgetstyles. html

Satyam

El 03/02/2010 10:39, Gia Raz escribió:

Hi all,

How can I center the menu items in a menubar?
The code below center menubar items in browser's window and hides menubar

<div id="naviagation">
  <div id="mymenubar" class="yuimenubar yuimenubarnav" style="position: absolute;">
    <div class="bd">
    ....
    </div>
  </div>
</div>

....
 
 var oMenuBar = new YAHOO.widget. MenuBar(" mymenubar" ,
     {autosubmenudisplay : true, position: "dynamic", visible:true, fixedcenter: true,
     constraintoviewport : true,container: "naviagation" });
    
Any help, please?

Thanks,

gia

No virus found in this incoming message. Checked by AVG - www.avg.com Version: 9.0.733 / Virus Database: 271.1.1/2664 - Release Date: 02/02/10 20:35:00

No virus found in this incoming message. Checked by AVG - www.avg.com Version: 9.0.733 / Virus Database: 271.1.1/2664 - Release Date: 02/02/10 20:35:00

#52397 From: Gia Raz <yui_ge@...>
Date: Wed Feb 3, 2010 12:48 pm
Subject: Re: Centering the menu items in a menubar
yui_ge
Send Email Send Email
 
.yuimenubaritem is used for <li> tag. I cannot center it with text-align.
 The position of menuitems  is controled with 'float' property: 'float: left'
 move all menuitems left and 'float: right' moves right.
 I cannot find any possibility to center menuitems.
gia


From: Satyam <satyam@...>
To: ydn-javascript@yahoogroups.com
Sent: Wed, February 3, 2010 4:16:39 PM
Subject: Re: [ydn-javascript] Centering the menu items in a menubar

 

I am not sure what effect you are looking for, but I thought it was text-align.  Anyway, the best thing to do is to use the DOM to change the styles and see the effect right there on the browser.

Satyam

El 03/02/2010 13:05, Gia Raz escribió:

Thank for attention.
The position of a menubaritem is controled by

.yuimenubaritem {
    float: left;
}

so I can move menubaritems inside of menubar left or right only?!


From: Satyam <satyam@satyam. com.ar>
To: ydn-javascript@ yahoogroups. com
Sent: Wed, February 3, 2010 2:43:16 PM
Subject: Re: [ydn-javascript] Centering the menu items in a menubar

 

As you've noticed, YUI controls are generously laced with classNames.  With some sort of DOM inspector you need to find out what style applies to the elements you want to center and override that style with the settings you want.  This article uses DataTable as an example, but the principle and the tools apply just as well:

http://www.satyam. com.ar/yui/ widgetstyles. html

Satyam

El 03/02/2010 10:39, Gia Raz escribió:

Hi all,

How can I center the menu items in a menubar?
The code below center menubar items in browser's window and hides menubar

<div id="naviagation">
  <div id="mymenubar" class="yuimenubar yuimenubarnav" style="position: absolute;">
    <div class="bd">
    ....
    </div>
  </div>
</div>

....
 
 var oMenuBar = new YAHOO.widget. MenuBar(" mymenubar" ,
     {autosubmenudisplay : true, position: "dynamic", visible:true, fixedcenter: true,
     constraintoviewport : true,container: "naviagation" });
    
Any help, please?

Thanks,

gia

No virus found in this incoming message. Checked by AVG - www.avg.com
Version: 9.0.733 / Virus Database: 271.1.1/2664 - Release Date: 02/02/10 20:35:00


No virus found in this incoming message. Checked by AVG - www.avg.com
Version: 9.0.733 / Virus Database: 271.1.1/2664 - Release Date: 02/02/10 20:35:00



#52398 From: m h <sesquile@...>
Date: Thu Feb 4, 2010 6:40 pm
Subject: Treating a div as a single "unit" in RTE Editor
sesquile@...
Send Email Send Email
 
Hey Folks-

Forst thanks to the YUI devs for all their hard work.  It is appreciated.

I'd like to be able to (programmatically) insert a styled div into an
RTE editor and treat it as a single unit. Ie I'd like the text in it
to not be editable, same with the images.

Here's an example: In looking at the samples, there's the calendar
plugin [0].  I'd like something similar, but instead of entering plain
text into the editor, I'd like to insert a nicely styled div,
containing the date.  This is un-editable in itself, but if you click
on it, it brings up the calendar editor again.

I imagine this is possible, I'm just at a loss as to where to start.
I'm assuming I need to update the beforeEditorClick and reject clicks
inside that div?!

Is that the correct way?  Is there a better way?

cheers,
-matt

0 - http://developer.yahoo.com/yui/examples/editor/cal_editor.html

#52399 From: Dav Glass <davglass@...>
Date: Thu Feb 4, 2010 7:00 pm
Subject: Re: Treating a div as a single "unit" in RTE Editor
dav.glass
Send Email Send Email
 
Matt --
First, you can change these lines:

var calDate = ' <span class="date">' + (ev.calDate.getMonth() + 1)
         + '/' + ev.calDate.getDate()
         + '/' + ev.calDate.getFullYear() + '</span> ';
     this.execCommand('inserthtml', calDate);

That is the span that injects the Date into the Editor. You can change
it all you want.

If you add the class 'yui-noedit' to that span and turn on allowNoEdit
in the config, it will not be editable.

http://developer.yahoo.com/yui/docs/YAHOO.widget.SimpleEditor.html#config_allowN\
oEdit

--
Dav Glass
davglass@...
blog.davglass.com


+ Windows: n. - The most successful computer virus, ever. +
+ A computer without a Microsoft operating system is like a dog
   without bricks tied to its head +
+ A Microsoft Certified Systems Engineer is to computing what a
  McDonalds Certified Food Specialist is to fine cuisine  +


On Thu, Feb 4, 2010 at 10:40 AM, m h <sesquile@...> wrote:
>
>
>
> Hey Folks-
>
> Forst thanks to the YUI devs for all their hard work. It is appreciated.
>
> I'd like to be able to (programmatically) insert a styled div into an
> RTE editor and treat it as a single unit. Ie I'd like the text in it
> to not be editable, same with the images.
>
> Here's an example: In looking at the samples, there's the calendar
> plugin [0]. I'd like something similar, but instead of entering plain
> text into the editor, I'd like to insert a nicely styled div,
> containing the date. This is un-editable in itself, but if you click
> on it, it brings up the calendar editor again.
>
> I imagine this is possible, I'm just at a loss as to where to start.
> I'm assuming I need to update the beforeEditorClick and reject clicks
> inside that div?!
>
> Is that the correct way? Is there a better way?
>
> cheers,
> -matt
>
> 0 - http://developer.yahoo.com/yui/examples/editor/cal_editor.html
>
>

#52400 From: "rolfsf" <rolfsf@...>
Date: Fri Feb 5, 2010 5:25 pm
Subject: Autocomplete - highlight matched characters
rolfsf
Send Email Send Email
 
I'm using autocomplete with a local datasource. I've got the following settings on it:

myAutoComplete.applyLocalFilter = true;
myAutoComplete.queryMatchContains = true;
myAutoComplete.minQueryLength = 2;

Is there a simple way to highlight the matched characters (ie. partial match) in the results list as the user types - perhaps as bold text

if I've entered "hel" I might see: 

Hello Kitty
Oh Hell
Shell

#52401 From: Dav Glass <davglass@...>
Date: Fri Feb 5, 2010 6:07 pm
Subject: Re: Autocomplete - highlight matched characters
dav.glass
Send Email Send Email
 
This example shows how to do that:

http://developer.yahoo.com/yui/examples/autocomplete/ac_fn_multfields.html

--
Dav Glass
davglass@...
blog.davglass.com


+ Windows: n. - The most successful computer virus, ever. +
+ A computer without a Microsoft operating system is like a dog
   without bricks tied to its head +
+ A Microsoft Certified Systems Engineer is to computing what a
  McDonalds Certified Food Specialist is to fine cuisine  +


On Fri, Feb 5, 2010 at 9:25 AM, rolfsf <rolfsf@...> wrote:
 

I'm using autocomplete with a local datasource. I've got the following settings on it:

myAutoComplete.applyLocalFilter = true;
myAutoComplete.queryMatchContains = true;
myAutoComplete.minQueryLength = 2;

Is there a simple way to highlight the matched characters (ie. partial match) in the results list as the user types - perhaps as bold text

if I've entered "hel" I might see: 


Hello Kitty
Oh Hell
Shell



#52403 From: m h <sesquile@...>
Date: Thu Feb 4, 2010 9:23 pm
Subject: Re: Treating a div as a single "unit" in RTE Editor
sesquile@...
Send Email Send Email
 
Dav-

I really appreciate your response.  It mostly works!  I say mostly
because there is a bug that allows you to delete the final character
of a yui-noedit span that is inserted before existing text.  The code
path goes _isNonEditable -> _getDomPath -> _getSelectedElement.  The
selected element turns out to be the body (deletable), but since it is
a back delete, you really need to check the previous element.

Hopefully I can come up with a patch.  (I'm on FF 3.6/Linux).

I've filed this as #2528771

cheers
-matt

On Thu, Feb 4, 2010 at 12:00 PM, Dav Glass <davglass@...> wrote:
> Matt --
> First, you can change these lines:
>
> var calDate = ' <span class="date">' + (ev.calDate.getMonth() + 1)
>        + '/' + ev.calDate.getDate()
>        + '/' + ev.calDate.getFullYear() + '</span> ';
>    this.execCommand('inserthtml', calDate);
>
> That is the span that injects the Date into the Editor. You can change
> it all you want.
>
> If you add the class 'yui-noedit' to that span and turn on allowNoEdit
> in the config, it will not be editable.
>
>
http://developer.yahoo.com/yui/docs/YAHOO.widget.SimpleEditor.html#config_allowN\
oEdit
>
> --
> Dav Glass
> davglass@...
> blog.davglass.com
>
>
> + Windows: n. - The most successful computer virus, ever. +
> + A computer without a Microsoft operating system is like a dog
>    without bricks tied to its head +
> + A Microsoft Certified Systems Engineer is to computing what a
>   McDonalds Certified Food Specialist is to fine cuisine  +
>
>
> On Thu, Feb 4, 2010 at 10:40 AM, m h <sesquile@...> wrote:
>>
>>
>>
>> Hey Folks-
>>
>> Forst thanks to the YUI devs for all their hard work. It is appreciated.
>>
>> I'd like to be able to (programmatically) insert a styled div into an
>> RTE editor and treat it as a single unit. Ie I'd like the text in it
>> to not be editable, same with the images.
>>
>> Here's an example: In looking at the samples, there's the calendar
>> plugin [0]. I'd like something similar, but instead of entering plain
>> text into the editor, I'd like to insert a nicely styled div,
>> containing the date. This is un-editable in itself, but if you click
>> on it, it brings up the calendar editor again.
>>
>> I imagine this is possible, I'm just at a loss as to where to start.
>> I'm assuming I need to update the beforeEditorClick and reject clicks
>> inside that div?!
>>
>> Is that the correct way? Is there a better way?
>>
>> cheers,
>> -matt
>>
>> 0 - http://developer.yahoo.com/yui/examples/editor/cal_editor.html
>>
>>
>
>
> ------------------------------------
>
> Yahoo! Groups Links
>
>
>
>

#52406 From: Eric Miraglia <ericmiraglia@...>
Date: Sat Feb 6, 2010 7:24 am
Subject: Group closing to new messages -- moving to YUILibrary.com
ericmiraglia
Send Email Send Email
 

YDN-JavaScript was created more than four years ago, and over that time it's been the site of lively conversations about the YUI Library.

The group has had its heros -- Satyam and Dav Glass notable among them -- and thousands of developers have been helped in this forum.

But the time has come to move on.  The YUI community is most active now in the YUILibrary.com forums, and a week from now we'll turn off the messaging features for YDN-JavaScript as we permanently move our attention to the new space.  If you haven't already done so, now is the time to get set up on YUILibrary.com:


YDN-JavaScript will remain open as a searchable archive, but after next week it will close to new messages, and those of us who work on the project every day will focus exclusively on YUILibrary.com as our mechanism for forum discussions.

Those of us on the YUI team look forward to seeing you on YUILibrary.com.

Regards,
Eric

#52411 From: Bradley Kieser <brad@...>
Date: Sat Feb 6, 2010 11:00 am
Subject: Re: Group closing to new messages -- moving to YUILibrary.com
bradkieser
Send Email Send Email
 
A sad end to a great tradition but time moves on.


Eric Miraglia wrote:
>
> YDN-JavaScript was created more than four years ago, and over that
> time it's been the site of lively conversations about the YUI Library.
>
> The group has had its heros -- Satyam and Dav Glass notable among them
> -- and thousands of developers have been helped in this forum.
>
> But the time has come to move on. The YUI community is most active now
> in the YUILibrary.com forums, and a week from now we'll turn off the
> messaging features for YDN-JavaScript as we permanently move our
> attention to the new space. If you haven't already done so, now is the
> time to get set up on YUILibrary.com:
>
> http://yuilibrary.com/forum/ <http://yuilibrary.com/forum/>
>
> YDN-JavaScript will remain open as a searchable archive, but after
> next week it will close to new messages, and those of us who work on
> the project every day will focus exclusively on YUILibrary.com as our
> mechanism for forum discussions.
>
> Those of us on the YUI team look forward to seeing you on YUILibrary.com.
>
> Regards,
> Eric
>

#52436 From: Eric Miraglia <ericmiraglia@...>
Date: Sun Feb 7, 2010 6:32 pm
Subject: regarding recent spam
ericmiraglia
Send Email Send Email
 
Sorry for the rash of spam that has been hitting YDN-JS this weekend.

The offending members and messages have been purged from the group.  I've closed the group to new membership to help curtail the problem; as noted previously, I'll be turning off new messages in the group at the end of next week, just allowing any currently ongoing conversations to complete over the next few days.

If you haven't already, please join us over on the YUILibrary.com forums:


Regards,
Eric

#52437 From: Brendan Vogt <brendan.vogt@...>
Date: Sun Feb 7, 2010 8:16 pm
Subject: Re: regarding recent spam
brendan.vogt@...
Send Email Send Email
 
Hi Eric,

This mailing list is going to be discontinued and all future questions will be asked in the online forums?

Brendan



On 7 February 2010 20:32, Eric Miraglia <ericmiraglia@...> wrote:
 

Sorry for the rash of spam that has been hitting YDN-JS this weekend.

The offending members and messages have been purged from the group.  I've closed the group to new membership to help curtail the problem; as noted previously, I'll be turning off new messages in the group at the end of next week, just allowing any currently ongoing conversations to complete over the next few days.

If you haven't already, please join us over on the YUILibrary.com forums:


Regards,
Eric


#52439 From: "Steven Hartland" <killing@...>
Date: Mon Feb 8, 2010 12:08 am
Subject: Re: regarding recent spam
steven_hartland
Send Email Send Email
 
If so that's v.bad don't have time to browse forums, as I suspect is the case for 90% of people here, so participation will drop dramatically. Would be sad to see that happen :(
 
Valve tried to do that with their server admins mailing list, so many people objected they ditched the idea.
 
    Regards
    Steve
 
----- Original Message -----
Sent: Sunday, February 07, 2010 8:16 PM
Subject: Re: [ydn-javascript] regarding recent spam

 

Hi Eric,

This mailing list is going to be discontinued and all future questions will be asked in the online forums?

Brendan



On 7 February 2010 20:32, Eric Miraglia <ericmiraglia@yahoo.com> wrote:
 

Sorry for the rash of spam that has been hitting YDN-JS this weekend.

The offending members and messages have been purged from the group.  I've closed the group to new membership to help curtail the problem; as noted previously, I'll be turning off new messages in the group at the end of next week, just allowing any currently ongoing conversations to complete over the next few days.

If you haven't already, please join us over on the YUILibrary.com forums:


Regards,
Eric


================================================
This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@....

#52440 From: Eric Miraglia <ericmiraglia@...>
Date: Mon Feb 8, 2010 2:28 am
Subject: Re: regarding recent spam
ericmiraglia
Send Email Send Email
 
Steve,

Thanks for the question.  You're right that we don't want to put up barriers to participation in the community.

YUILibrary.com forums offer 
  • OpenID login
  • RSS feeds by forum and by tag
  • Email subscriptions by forum
There's no need to browse -- the RSS and email support keeps the content coming to you, but with more fine-grained control over what and how.

We're seeing more activity on the forums today than on the list, and activity on the forums has been trending up steeply.

Regards,
Eric


From: Steven Hartland <killing@...>
To: ydn-javascript@yahoogroups.com
Sent: Sun, February 7, 2010 4:08:28 PM
Subject: Re: [ydn-javascript] regarding recent spam

 

If so that's v.bad don't have time to browse forums, as I suspect is the case for 90% of people here, so participation will drop dramatically. Would be sad to see that happen :(
 
Valve tried to do that with their server admins mailing list, so many people objected they ditched the idea.
 
    Regards
    Steve
 
----- Original Message -----
Sent: Sunday, February 07, 2010 8:16 PM
Subject: Re: [ydn-javascript] regarding recent spam

 

Hi Eric,

This mailing list is going to be discontinued and all future questions will be asked in the online forums?

Brendan



On 7 February 2010 20:32, Eric Miraglia <ericmiraglia@ yahoo.com> wrote:
 

Sorry for the rash of spam that has been hitting YDN-JS this weekend.

The offending members and messages have been purged from the group.  I've closed the group to new membership to help curtail the problem; as noted previously, I'll be turning off new messages in the group at the end of next week, just allowing any currently ongoing conversations to complete over the next few days.

If you haven't already, please join us over on the YUILibrary.com forums:


Regards,
Eric


============ ========= ========= ========= =========
This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@multipla y.co.uk.

#52441 From: "Hugh E Cruickshank" <hugh@...>
Date: Mon Feb 8, 2010 7:09 pm
Subject: RE: regarding recent spam
hugh@...
Send Email Send Email
 
From: Eric Miraglia Sent: February 7, 2010 18:29
>
> YUILibrary.com forums offer
> OpenID login
> RSS feeds by forum and by tag
> Email subscriptions by forum
> There's no need to browse -- the RSS and email support keeps the
> content coming to you, but with more fine-grained control over what
> and how.

Hi Eric:

Thanks for this information. I have registered with the new site but
for the life of me I have not been able to figure out how to subscribe
to the forums. Can you give me a hint?

TIA

Regards, Hugh

--
Hugh E Cruickshank, Forward Software, www.forward-software.com

#52442 From: Dav Glass <davglass@...>
Date: Mon Feb 8, 2010 7:29 pm
Subject: Re: regarding recent spam
dav.glass
Send Email Send Email
 
Navigate to the forum you want to subscribe to, for example the DataTable forum:

At the bottom by the legend click the '[Subscribe Forum]' link.
That will do it..

--
Dav Glass
davglass@...
blog.davglass.com


+ Windows: n. - The most successful computer virus, ever. +
+ A computer without a Microsoft operating system is like a dog
   without bricks tied to its head +
+ A Microsoft Certified Systems Engineer is to computing what a
  McDonalds Certified Food Specialist is to fine cuisine  +


On Mon, Feb 8, 2010 at 11:09 AM, Hugh E Cruickshank <hugh@...> wrote:
 

From: Eric Miraglia Sent: February 7, 2010 18:29


>
> YUILibrary.com forums offer
> OpenID login
> RSS feeds by forum and by tag
> Email subscriptions by forum
> There's no need to browse -- the RSS and email support keeps the
> content coming to you, but with more fine-grained control over what
> and how.

Hi Eric:

Thanks for this information. I have registered with the new site but
for the life of me I have not been able to figure out how to subscribe
to the forums. Can you give me a hint?

TIA

Regards, Hugh

--
Hugh E Cruickshank, Forward Software, www.forward-software.com



#52443 From: "Hugh E Cruickshank" <hugh@...>
Date: Mon Feb 8, 2010 7:49 pm
Subject: RE: regarding recent spam
hugh@...
Send Email Send Email
 
From: Dav Glass Sent: February 8, 2010 11:29
>
> At the bottom by the legend click the '[Subscribe Forum]' link.
> That will do it..

Found it, thanks.

This does not bode well for the coming week for me.

Regards, Hugh

--
Hugh E Cruickshank, Forward Software, www.forward-software.com

#52444 From: "Steven Hartland" <killing@...>
Date: Mon Feb 8, 2010 8:25 pm
Subject: Re: regarding recent spam
steven_hartland
Send Email Send Email
 

Does this include being able to reply with email? If not its gonna be a no go here, I'm on must 30+ email lists and having to click through to a forum just to reply, adds time which I simply don't have.
 
Personally I've always found forums contain way to much low quality content, may be that just me, but I will definitely be sad to see the list go :(
 
    Regards
    Steve
 
----- Original Message -----
Sent: Monday, February 08, 2010 2:28 AM
Subject: Re: [ydn-javascript] regarding recent spam

 

Steve,

Thanks for the question.  You're right that we don't want to put up barriers to participation in the community.

YUILibrary.com forums offer 
  • OpenID login
  • RSS feeds by forum and by tag
  • Email subscriptions by forum
There's no need to browse -- the RSS and email support keeps the content coming to you, but with more fine-grained control over what and how.

We're seeing more activity on the forums today than on the list, and activity on the forums has been trending up steeply.

Regards,
Eric


From: Steven Hartland <killing@multiplay.co.uk>
To: ydn-javascript@yahoogroups.com
Sent: Sun, February 7, 2010 4:08:28 PM
Subject: Re: [ydn-javascript] regarding recent spam

 

If so that's v.bad don't have time to browse forums, as I suspect is the case for 90% of people here, so participation will drop dramatically. Would be sad to see that happen :(
 
Valve tried to do that with their server admins mailing list, so many people objected they ditched the idea.
 
    Regards
    Steve
 
----- Original Message -----
Sent: Sunday, February 07, 2010 8:16 PM
Subject: Re: [ydn-javascript] regarding recent spam

 

Hi Eric,

This mailing list is going to be discontinued and all future questions will be asked in the online forums?

Brendan



On 7 February 2010 20:32, Eric Miraglia <ericmiraglia@ yahoo.com> wrote:
 

Sorry for the rash of spam that has been hitting YDN-JS this weekend.

The offending members and messages have been purged from the group.  I've closed the group to new membership to help curtail the problem; as noted previously, I'll be turning off new messages in the group at the end of next week, just allowing any currently ongoing conversations to complete over the next few days.

If you haven't already, please join us over on the YUILibrary.com forums:


Regards,
Eric


============ ========= ========= ========= =========
This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@multipla y.co.uk.


================================================
This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@....

#52445 From: Dav Glass <davglass@...>
Date: Mon Feb 8, 2010 9:20 pm
Subject: Re: regarding recent spam
dav.glass
Send Email Send Email
 
Yes, the forums support replying via email. That was one of the requirements for building it.

--
Dav Glass
davglass@...
blog.davglass.com


+ Windows: n. - The most successful computer virus, ever. +
+ A computer without a Microsoft operating system is like a dog
   without bricks tied to its head +
+ A Microsoft Certified Systems Engineer is to computing what a
  McDonalds Certified Food Specialist is to fine cuisine  +


On Mon, Feb 8, 2010 at 12:25 PM, Steven Hartland <killing@...> wrote:
 



Does this include being able to reply with email? If not its gonna be a no go here, I'm on must 30+ email lists and having to click through to a forum just to reply, adds time which I simply don't have.
 
Personally I've always found forums contain way to much low quality content, may be that just me, but I will definitely be sad to see the list go :(
 
    Regards
    Steve
 
----- Original Message -----
Sent: Monday, February 08, 2010 2:28 AM
Subject: Re: [ydn-javascript] regarding recent spam

 

Steve,

Thanks for the question.  You're right that we don't want to put up barriers to participation in the community.

YUILibrary.com forums offer 
  • OpenID login
  • RSS feeds by forum and by tag
  • Email subscriptions by forum
There's no need to browse -- the RSS and email support keeps the content coming to you, but with more fine-grained control over what and how.

We're seeing more activity on the forums today than on the list, and activity on the forums has been trending up steeply.

Regards,
Eric


From: Steven Hartland <killing@...>
To: ydn-javascript@yahoogroups.com
Sent: Sun, February 7, 2010 4:08:28 PM
Subject: Re: [ydn-javascript] regarding recent spam

 

If so that's v.bad don't have time to browse forums, as I suspect is the case for 90% of people here, so participation will drop dramatically. Would be sad to see that happen :(
 
Valve tried to do that with their server admins mailing list, so many people objected they ditched the idea.
 
    Regards
    Steve
 
----- Original Message -----
Sent: Sunday, February 07, 2010 8:16 PM
Subject: Re: [ydn-javascript] regarding recent spam

 

Hi Eric,

This mailing list is going to be discontinued and all future questions will be asked in the online forums?

Brendan



On 7 February 2010 20:32, Eric Miraglia <ericmiraglia@ yahoo.com> wrote:
 

Sorry for the rash of spam that has been hitting YDN-JS this weekend.

The offending members and messages have been purged from the group.  I've closed the group to new membership to help curtail the problem; as noted previously, I'll be turning off new messages in the group at the end of next week, just allowing any currently ongoing conversations to complete over the next few days.

If you haven't already, please join us over on the YUILibrary.com forums:


Regards,
Eric


============ ========= ========= ========= =========
This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@multipla y.co.uk.


================================================

This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@....



#52446 From: "Steven Hartland" <killing@...>
Date: Tue Feb 9, 2010 9:55 am
Subject: Re: regarding recent spam
steven_hartland
Send Email Send Email
 

Sweet :-)
 
----- Original Message -----
From: Dav Glass
Sent: Monday, February 08, 2010 9:20 PM
Subject: Re: [ydn-javascript] regarding recent spam

 

Yes, the forums support replying via email. That was one of the requirements for building it.

--
Dav Glass
davglass@gmail.com
blog.davglass.com


+ Windows: n. - The most successful computer virus, ever. +
+ A computer without a Microsoft operating system is like a dog
   without bricks tied to its head +
+ A Microsoft Certified Systems Engineer is to computing what a
  McDonalds Certified Food Specialist is to fine cuisine  +


On Mon, Feb 8, 2010 at 12:25 PM, Steven Hartland <killing@multiplay.co.uk> wrote:
 



Does this include being able to reply with email? If not its gonna be a no go here, I'm on must 30+ email lists and having to click through to a forum just to reply, adds time which I simply don't have.
 
Personally I've always found forums contain way to much low quality content, may be that just me, but I will definitely be sad to see the list go :(
 
    Regards
    Steve
 
----- Original Message -----
Sent: Monday, February 08, 2010 2:28 AM
Subject: Re: [ydn-javascript] regarding recent spam

 

Steve,

Thanks for the question.  You're right that we don't want to put up barriers to participation in the community.

YUILibrary.com forums offer 
  • OpenID login
  • RSS feeds by forum and by tag
  • Email subscriptions by forum
There's no need to browse -- the RSS and email support keeps the content coming to you, but with more fine-grained control over what and how.

We're seeing more activity on the forums today than on the list, and activity on the forums has been trending up steeply.

Regards,
Eric


From: Steven Hartland <killing@multiplay.co.uk>
To: ydn-javascript@yahoogroups.com
Sent: Sun, February 7, 2010 4:08:28 PM
Subject: Re: [ydn-javascript] regarding recent spam

 

If so that's v.bad don't have time to browse forums, as I suspect is the case for 90% of people here, so participation will drop dramatically. Would be sad to see that happen :(
 
Valve tried to do that with their server admins mailing list, so many people objected they ditched the idea.
 
    Regards
    Steve
 
----- Original Message -----
Sent: Sunday, February 07, 2010 8:16 PM
Subject: Re: [ydn-javascript] regarding recent spam

 

Hi Eric,

This mailing list is going to be discontinued and all future questions will be asked in the online forums?

Brendan



On 7 February 2010 20:32, Eric Miraglia <ericmiraglia@ yahoo.com> wrote:
 

Sorry for the rash of spam that has been hitting YDN-JS this weekend.

The offending members and messages have been purged from the group.  I've closed the group to new membership to help curtail the problem; as noted previously, I'll be turning off new messages in the group at the end of next week, just allowing any currently ongoing conversations to complete over the next few days.

If you haven't already, please join us over on the YUILibrary.com forums:


Regards,
Eric


============ ========= ========= ========= =========
This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@multipla y.co.uk.


================================================

This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@multiplay.co.uk.



================================================
This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@....

#52447 From: Satyam <satyam@...>
Date: Tue Feb 9, 2010 12:32 pm
Subject: Re: regarding recent spam
satyamutsa
Send Email Send Email
 
The messages from the forum state at the footer:
<quote>
Do not reply to this email. It is a one-way only email address.
All messages sent to this address will be ignored.
</quote>


El 09/02/2010 10:55, Steven Hartland escribió:

Sweet :-)
 
----- Original Message -----
From: Dav Glass
Sent: Monday, February 08, 2010 9:20 PM
Subject: Re: [ydn-javascript] regarding recent spam

 

Yes, the forums support replying via email. That was one of the requirements for building it.

--
Dav Glass
davglass@gmail.com
blog.davglass.com


+ Windows: n. - The most successful computer virus, ever. +
+ A computer without a Microsoft operating system is like a dog
   without bricks tied to its head +
+ A Microsoft Certified Systems Engineer is to computing what a
  McDonalds Certified Food Specialist is to fine cuisine  +


On Mon, Feb 8, 2010 at 12:25 PM, Steven Hartland <killing@multiplay.co.uk> wrote:
 



Does this include being able to reply with email? If not its gonna be a no go here, I'm on must 30+ email lists and having to click through to a forum just to reply, adds time which I simply don't have.
 
Personally I've always found forums contain way to much low quality content, may be that just me, but I will definitely be sad to see the list go :(
 
    Regards
    Steve
 
----- Original Message -----
Sent: Monday, February 08, 2010 2:28 AM
Subject: Re: [ydn-javascript] regarding recent spam

 
Steve,

Thanks for the question.  You're right that we don't want to put up barriers to participation in the community.

YUILibrary.com forums offer 
  • OpenID login
  • RSS feeds by forum and by tag
  • Email subscriptions by forum
There's no need to browse -- the RSS and email support keeps the content coming to you, but with more fine-grained control over what and how.

We're seeing more activity on the forums today than on the list, and activity on the forums has been trending up steeply.

Regards,
Eric


From: Steven Hartland <killing@multiplay.co.uk>
To: ydn-javascript@yahoogroups.com
Sent: Sun, February 7, 2010 4:08:28 PM
Subject: Re: [ydn-javascript] regarding recent spam

 
If so that's v.bad don't have time to browse forums, as I suspect is the case for 90% of people here, so participation will drop dramatically. Would be sad to see that happen :(
 
Valve tried to do that with their server admins mailing list, so many people objected they ditched the idea.
 
    Regards
    Steve
 
----- Original Message -----
Sent: Sunday, February 07, 2010 8:16 PM
Subject: Re: [ydn-javascript] regarding recent spam

 

Hi Eric,

This mailing list is going to be discontinued and all future questions will be asked in the online forums?

Brendan



On 7 February 2010 20:32, Eric Miraglia <ericmiraglia@ yahoo.com> wrote:
 
Sorry for the rash of spam that has been hitting YDN-JS this weekend.

The offending members and messages have been purged from the group.  I've closed the group to new membership to help curtail the problem; as noted previously, I'll be turning off new messages in the group at the end of next week, just allowing any currently ongoing conversations to complete over the next few days.

If you haven't already, please join us over on the YUILibrary.com forums:


Regards,
Eric


============ ========= ========= ========= =========
This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@multipla y.co.uk.

================================================

This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@multiplay.co.uk.


================================================
This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@....
No virus found in this incoming message. Checked by AVG - www.avg.com Version: 9.0.733 / Virus Database: 271.1.1/2676 - Release Date: 02/08/10 20:35:00

#52448 From: Eric Miraglia <ericmiraglia@...>
Date: Tue Feb 9, 2010 4:45 pm
Subject: Re: regarding recent spam
ericmiraglia
Send Email Send Email
 
Satyam,

Our error -- we're working on it:


That will be fixed in the next site push.

-Eric


From: Satyam <satyam@...>
To: ydn-javascript@yahoogroups.com
Sent: Tue, February 9, 2010 4:32:06 AM
Subject: Re: [ydn-javascript] regarding recent spam

 

The messages from the forum state at the footer:
<quote>

Do not reply to this email. It is a one-way only email address.
All messages sent to this address will be ignored.
</quote>


El 09/02/2010 10:55, Steven Hartland escribió:

Sweet :-)
 
----- Original Message -----
From: Dav Glass
Sent: Monday, February 08, 2010 9:20 PM
Subject: Re: [ydn-javascript] regarding recent spam

 

Yes, the forums support replying via email. That was one of the requirements for building it.

--
Dav Glass
davglass@gmail. com
blog.davglass. com


+ Windows: n. - The most successful computer virus, ever. +
+ A computer without a Microsoft operating system is like a dog
   without bricks tied to its head +
+ A Microsoft Certified Systems Engineer is to computing what a
  McDonalds Certified Food Specialist is to fine cuisine  +


On Mon, Feb 8, 2010 at 12:25 PM, Steven Hartland <killing@multiplay. co.uk> wrote:
 



Does this include being able to reply with email? If not its gonna be a no go here, I'm on must 30+ email lists and having to click through to a forum just to reply, adds time which I simply don't have.
 
Personally I've always found forums contain way to much low quality content, may be that just me, but I will definitely be sad to see the list go :(
 
    Regards
    Steve
 
----- Original Message -----
Sent: Monday, February 08, 2010 2:28 AM
Subject: Re: [ydn-javascript] regarding recent spam

 
Steve,

Thanks for the question.  You're right that we don't want to put up barriers to participation in the community.

YUILibrary.com forums offer 
  • OpenID login
  • RSS feeds by forum and by tag
  • Email subscriptions by forum
There's no need to browse -- the RSS and email support keeps the content coming to you, but with more fine-grained control over what and how.

We're seeing more activity on the forums today than on the list, and activity on the forums has been trending up steeply.

Regards,
Eric


From: Steven Hartland <killing@multiplay. co.uk>
To: ydn-javascript@ yahoogroups. com
Sent: Sun, February 7, 2010 4:08:28 PM
Subject: Re: [ydn-javascript] regarding recent spam

 
If so that's v.bad don't have time to browse forums, as I suspect is the case for 90% of people here, so participation will drop dramatically. Would be sad to see that happen :(
 
Valve tried to do that with their server admins mailing list, so many people objected they ditched the idea.
 
    Regards
    Steve
 
----- Original Message -----
Sent: Sunday, February 07, 2010 8:16 PM
Subject: Re: [ydn-javascript] regarding recent spam

 

Hi Eric,

This mailing list is going to be discontinued and all future questions will be asked in the online forums?

Brendan



On 7 February 2010 20:32, Eric Miraglia <ericmiraglia@ yahoo.com> wrote:
 
Sorry for the rash of spam that has been hitting YDN-JS this weekend.

The offending members and messages have been purged from the group.  I've closed the group to new membership to help curtail the problem; as noted previously, I'll be turning off new messages in the group at the end of next week, just allowing any currently ongoing conversations to complete over the next few days.

If you haven't already, please join us over on the YUILibrary.com forums:


Regards,
Eric


============ ========= ========= ========= =========
This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@multipla y.co.uk.

============ ========= ========= ========= =========

This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@multipla y.co.uk.


============ ========= ========= ========= =========
This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it.

In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337
or return the E.mail to postmaster@multipla y.co.uk.
No virus found in this incoming message. Checked by AVG - www.avg.com Version: 9.0.733 / Virus Database: 271.1.1/2676 - Release Date: 02/08/10 20:35:00

Messages 52383 - 52448 of 52481   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help