Monday, August 31, 2009

[jQuery] Re: JqModal / simpleModal - maintaining form state

If you are referring to the known issues I mentioned - since they are
browser issues, you'd need to implement something that woul keep track
of state in those browsers.

On Aug 31, 6:45 am, "Steffan A. Cline" <stef...@hldns.com> wrote:
> on8/30/09 12:48 PM, Steffan Cline at stef...@hldns.com wrote:
>
>
>
>
>
>
>
> > I have tried both of these modal solutions, beautiful by the way, and found
> > a small problem with both of them and am wondering if there is a work
> > around.
>
> > I have a form where there are a bunch of check boxes that I have enclosed in
> > a div that I am using for my popup modal. Now the thing is that while the
> > modal is up and I check a bunch of boxes and then close the modal, reopen
> > again, all checkboxes have been reset rather than retaining their state. Is
> > there a way to circumvent this behavior?
>
> > So, if I click checkbox #1 and close the modal and then reopen the modal,
> > checkbox #1 is no longer checked. I need it to maintain it's state.
>
> > Any suggestions?
>
> > Thanks
>
> > Steffan
>
> I tried a couple other modal type plugins and seem to have the same issues.
> Has anyone seen this before? Is there a work around?
>
> Thanks
>
> Steffan
>
> ---------------------------------------------------------------
> T E L  6 0 2 . 7 9 3 . 0 0 1 4 | F A X  6 0 2 . 9 7 1 . 1 6 9 4
> Steffan A. Cline  
> Stef...@ExecuChoice.net                             Phoenix, Azhttp://www.ExecuChoice.net                                 USA
> AIM : SteffanC          ICQ : 57234309
> YAHOO : Steffan_Cline   MSN : stef...@hldns.com
> GOOGLE: Steffan.Cline             Lasso Partner Alliance Member
> ---------------------------------------------------------------

[jQuery] jquery.validate.js error message will not clear when radio button in CakePHP is selected

Hello,

I have this form: http://www.ucasal.net/sistema/encuestas/docentes/2009
which is created using CakePHP v1.2.

When submitting the empty form, the first radio buttons give you an
error message; however, when you select one, the error message won't
clear.

I have a suspicion that the way that CakePHP is maintaining the
state of the radio button with a hidden input which appears first and
has the same name as the other radio elements is the culprit.

If I click in the first textarea the associated error message
clears, so I know that things are being loaded properly.

I have tried using: focusCleanup: true as well as ignore:
':hidden' without success.

Any help would be welcome.

Sincerely,
Christopher Vrooman

[jQuery] Re: Display Form Help by Jquery - Help Needed

This group is for jQuery-related questions. Do you want to achieve
this using jQuery?

That is not recommended, by the way. You can achieve this using tables
(with <td align="right">), or using <div>'s and settings styles to
"float: right".

On Aug 30, 3:47 am, SJRANJAN <sjranjansiainfot...@gmail.com> wrote:
> i want to build a page like ...
>
> http://www.shaadi.com/registration/user/index.php
>
> there when u go to each and every field it shows help in the right
> side ....
>
> i want to know how to create like this ...
>
> any one have idea about this ....

[jQuery] Re: how to disaply all options onFocus?

What are you talking about? A jQuery plug-in?

On Aug 31, 5:16 am, donal <donal.con...@gmail.com> wrote:
> Setting the min to 0 will dispaly all the optins if the user clicks
> the field a 2nd time.  However, i'd like the options to display once
> the input has focus, or using a button.  How can I do that?
>
> thanks

[jQuery] Re: listnav functionality applied to tables -- is this possible?

I like the concept. The intended use at the moment would not require
that much user interaction. The listnav would be perfect. I will see
what route you came up with and see what I can do with it, as you have
already worked it in with tablesorter.

Thank you.


On Aug 31, 2:41 pm, aquaone <aqua...@gmail.com> wrote:
> like this?http://bluemoon.reverse.net/~aquaone/tablefilter/
>
> feel free to grab it. not sure when i'll have the time to finalize it but
> it's quite full-featured at present.
>
> aquaone
>
>
>
> On Mon, Aug 31, 2009 at 09:07, wshawn <sh...@sanityllc.com> wrote:
>
> > I am curious if the devs would be interested in making this same
> > functionality work with tables.
>
> > I would be interested in seeing similar functionality available via
> > listnav for the first td of a tr.
>
> > Essentially, grabbing the first character, as a reference for
> > filtering only that later from the nav bar. as you are currently doing
> > for ul/ol and li tags.
>
> > I have already accomplished this via ajax, but I believe using the
> > concepts in this listnav would reduce overall server load.
>
> > I am currently using tablesorter to handle a php/ mysql return.  I
> > would like to see your plugin filter what table sorter is having to
> > deal with.
>
> > Any ideas if this is indeed something you would be interested in
> > working on?

[jQuery] Re: listnav functionality applied to tables -- is this possible?

Thanks for the consideration... Because you are using $this alot I
believe it is doable. I am just getting back into javascript, or I
would jump on it.

On Aug 31, 12:46 pm, Jack Killpatrick <j...@ihwy.com> wrote:
> I'll chew on that idea for a while. If I think I can pull that off
> without much surgery to the plugin, I'll add it, otherwise probably not.
> This is the first time someone has requested that.
>
> Thanks,
> Jack
>
>
>
> wshawn wrote:
> > I am curious if the devs would be interested in making this same
> > functionality work with tables.
>
> > I would be interested in seeing similar functionality available via
> > listnav for the first td of a tr.
>
> > Essentially, grabbing the first character, as a reference for
> > filtering only that later from the nav bar. as you are currently doing
> > for ul/ol and li tags.
>
> > I have already accomplished this via ajax, but I believe using the
> > concepts in this listnav would reduce overall server load.
>
> > I am currently using tablesorter to handle a php/ mysql return.  I
> > would like to see your plugin filter what table sorter is having to
> > deal with.
>
> > Any ideas if this is indeed something you would be interested in
> > working on?

[jQuery] Re: jQuery select where attribute ID less than

Can you give us a hint what your DOM elements look like? For example, are
these ID attributes in ascending order in the DOM? That would allow you to
use a very fast binary search. If they are in an undetermined order then
you're pretty much stuck with looping through them - but with thousands of
them I would use a for loop rather than .each().

Or as Josh suggested, do something on the server. But it's hard to make any
recommendations without knowing more about what you're doing.

-Mike

> From: Namir
>
> Still how would I do it with an each? I'd still need to
> select all the ones with an attribute of less than x, and it
> would be stupid to loop it from 1 to whatever as x can reach
> thousands. Do you have any other suggestions as to how I
> could do this?
>
> On Aug 31, 9:58 pm, aquaone <aqua...@gmail.com> wrote:
> > id will be a string. AFAIK there's no built-in to parse it
> as a number
> > and compare. you'd either have to .each() it or find
> another means of
> > accomplishing what you are trying to do.
> >
> > aquaone
> >
> >
> >
> > On Mon, Aug 31, 2009 at 13:50, Namir <namiras...@hotmail.com> wrote:
> >
> > > How can I do a less than in a select e.g. something like
> > > $.("span.class [id<"+ a_custom_variable +"]") when I
> tried that it
> > > just selected all span of class with an ID attribute rather than
> > > where ID attribute is less than
>

[jQuery] Re: jQuery select where attribute ID less than

indeed. there's gotta be a better solution than this.
if you can't control it and insist on using this method, $(span.class).each(function(){if($(this).attr('id')<x){//do something}});
The performance on that will be crap. Please find an alternate solution e.g. .is(':gt'+x)

aquaone

On Mon, Aug 31, 2009 at 14:47, Josh Nathanson <joshnathanson@gmail.com> wrote:

Any chance of doing what you need to do on the server, rather than the
client?

Are you stuck with the naming convention you're using, or can you name the
spans a little differently or give them different class names to allow for
better selection criteria?

Given your current situation you'd have to loop through each span as Aquaone
said, but I bet you might be able to think of a different way to approach
the problem.

-- Josh



-----Original Message-----
From: jquery-en@googlegroups.com [mailto:jquery-en@googlegroups.com] On
Behalf Of Namir
Sent: Monday, August 31, 2009 2:33 PM
To: jQuery (English)
Subject: [jQuery] Re: jQuery select where attribute ID less than


Still how would I do it with an each? I'd still need to select all the
ones with an attribute of less than x, and it would be stupid to loop
it from 1 to whatever as x can reach thousands. Do you have any other
suggestions as to how I could do this?

On Aug 31, 9:58 pm, aquaone <aqua...@gmail.com> wrote:
> id will be a string. AFAIK there's no built-in to parse it as a number and
> compare. you'd either have to .each() it or find another means of
> accomplishing what you are trying to do.
>
> aquaone
>
>
>
> On Mon, Aug 31, 2009 at 13:50, Namir <namiras...@hotmail.com> wrote:
>
> > How can I do a less than in a select e.g. something like $.("span.class
> > [id<"+ a_custom_variable +"]") when I tried that it just selected all
> > span of class with an ID attribute rather than where ID attribute is
> > less than


[jQuery] Re: jQuery select where attribute ID less than

Any chance of doing what you need to do on the server, rather than the
client?

Are you stuck with the naming convention you're using, or can you name the
spans a little differently or give them different class names to allow for
better selection criteria?

Given your current situation you'd have to loop through each span as Aquaone
said, but I bet you might be able to think of a different way to approach
the problem.

-- Josh

-----Original Message-----
From: jquery-en@googlegroups.com [mailto:jquery-en@googlegroups.com] On
Behalf Of Namir
Sent: Monday, August 31, 2009 2:33 PM
To: jQuery (English)
Subject: [jQuery] Re: jQuery select where attribute ID less than


Still how would I do it with an each? I'd still need to select all the
ones with an attribute of less than x, and it would be stupid to loop
it from 1 to whatever as x can reach thousands. Do you have any other
suggestions as to how I could do this?

On Aug 31, 9:58 pm, aquaone <aqua...@gmail.com> wrote:
> id will be a string. AFAIK there's no built-in to parse it as a number and
> compare. you'd either have to .each() it or find another means of
> accomplishing what you are trying to do.
>
> aquaone
>
>
>
> On Mon, Aug 31, 2009 at 13:50, Namir <namiras...@hotmail.com> wrote:
>
> > How can I do a less than in a select e.g. something like $.("span.class
> > [id<"+ a_custom_variable +"]") when I tried that it just selected all
> > span of class with an ID attribute rather than where ID attribute is
> > less than

[jQuery] Re: Find reverse? Parent?

In this case the DIV is a sibling, not a parent, of the <A>.
So you want to select on that. If the HTML is complete as you show
it, the selector needed is simply the .prev() of your <A>

On Aug 31, 2:36 pm, Jottae <smallj...@gmail.com> wrote:
> Hi guys.
>
> I am wanting to click the link with the class "test" the function
> append href taking the (already up and running) appears in the
> "picture" div, but only in the same div "lol" where there is also a
> class "test".
>
> suggestions?
>
> -----------------------------------------------
> This is html code:
>
> <div id="lol">
> <div class="picture">
> lorem ipson
> </div>
>
> <a class=" test" href="http://www.google.com/myckey.gif">Google</a>
>
> </div>
>
> <div id="lol">
> <div class="picture">
> lorem ipson
> </div>
>
> <a class=" test" href="http://www.google.com/donald.gif">Google</a>
>
> </div>
>
> -----------------------------------------------------------
> This is code jQuery.
>
> $(".test").click(function() {
>      var url = this.href;
>      $(".picture").append("<img src='+url+'/>");   --->> This is
> wrong  ---  find reverse?parent?
>     });
>
> Thanks. =D

[jQuery] Re: jQuery select where attribute ID less than

Still how would I do it with an each? I'd still need to select all the
ones with an attribute of less than x, and it would be stupid to loop
it from 1 to whatever as x can reach thousands. Do you have any other
suggestions as to how I could do this?

On Aug 31, 9:58 pm, aquaone <aqua...@gmail.com> wrote:
> id will be a string. AFAIK there's no built-in to parse it as a number and
> compare. you'd either have to .each() it or find another means of
> accomplishing what you are trying to do.
>
> aquaone
>
>
>
> On Mon, Aug 31, 2009 at 13:50, Namir <namiras...@hotmail.com> wrote:
>
> > How can I do a less than in a select e.g. something like $.("span.class
> > [id<"+ a_custom_variable +"]") when I tried that it just selected all
> > span of class with an ID attribute rather than where ID attribute is
> > less than

[jQuery] Re: jQuery select where attribute ID less than

id will be a string. AFAIK there's no built-in to parse it as a number and compare. you'd either have to .each() it or find another means of accomplishing what you are trying to do.

aquaone


On Mon, Aug 31, 2009 at 13:50, Namir <namirasmar@hotmail.com> wrote:

How can I do a less than in a select e.g. something like $.("span.class
[id<"+ a_custom_variable +"]") when I tried that it just selected all
span of class with an ID attribute rather than where ID attribute is
less than

[jQuery] Re: Https mixed content error with ajax

Yes thats all fine. Like I said it only occures when I make an ajax
call out and then inject the returned html into the DOM.

On Aug 31, 3:44 pm, James <james.gp....@gmail.com> wrote:
> Is the include script to the jQuery library also HTTPs? All external
> content (CSS, Scripts, Images) has to be over HTTPs to not create the
> mixed content error.
>
> On Aug 31, 5:10 am, UglySkinnyGuy <evan.e.free...@gmail.com> wrote:
>
>
>
> > Have a wierd issue. It seems that if I use jquery in https and do an
> > ajax call out and then update the dom with the resulting html I get an
> > HTTPS unsecure content warning. Now the content is all https and there
> > are not http calls any where so I'm wondering if this has been seen
> > before. I've dug very deep looking for the issus and if I take jquery
> > out of the equation it doesn't give me an error. But I've standardized
> > jquery as part of the site and don't want to mix straight old
> > javascript with jquery, if I can avoid it.
>
> > So any help would be useful.- Hide quoted text -
>
> - Show quoted text -

[jQuery] jQuery select where attribute ID less than

How can I do a less than in a select e.g. something like $.("span.class
[id<"+ a_custom_variable +"]") when I tried that it just selected all
span of class with an ID attribute rather than where ID attribute is
less than

[jQuery] Re: code not working

My goodness, please do not paste an entire copy of jquery.js in a message to
this group. Your 120KB message was emailed to 20,000 people! All we need is
the version number.

Better yet, don't paste your own code into a message either. Instead, post a
link to a test page that we can load in a browser ourselves. That makes it
*much* easier to look at a problem.

If you do post code in a message, don't post your ASP source. Do a View
Source in your browser to see the generated HTML code that the browser
actually receives. JavaScript and jQuery don't run on your ASP source. They
run on the HTML code that your ASP source generates, as shown by View
Source.

Now since we're here, a few suggestions:

* Update your jQuery 1.3 to the current version, 1.3.2. It's unlikely that
this is related to any problems you're seeing, but there have been a lot of
bug fixes since 1.3.

* Where you have this code:

var parID = $('#txt_num'); //this variable doesn't fill
alert(parID);

What do you mean "doesn't fill"? What does the alert show you? It should
display:

[object Object]

Is that what it shows? What were you expecting it to display? There's no
hint of what you are actually trying to do here.

* You have all sorts of mixed case in your attribute names. ID=, OnChange=,
etc. These should all be lowercase in HTML code. But since I'm looking at
the ASP source, I don't know if it has other requirements.

* Instead of the onchange= attribute for your event handler, it would be
better to use jQuery code. It could be something like this:

<script type ="text/javascript">
$(document).ready( function() {

$('#txt_num').change( function() {
// your code here
});

});
</script>

* When I see code like "doIt(this.form,this,2)" I immediately get the
feeling that there is probably a better way to do it, but since I don't yet
know what "it" is I can't yet make any recommendations.

-Mike

> From: ando
>
> this code is not working and I don't know the reasons for that
> I loaded the file jquery.js that I used
>
> the main code :
>
> <%@ Page Language="VB" AutoEventWireup="false"
> CodeFile="Default.aspx.vb" Inherits="_Default" %>
>
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
> Transitional//EN" "http://
> www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>
> <html xmlns="http://www.w3.org/1999/xhtml">
> <head runat="server">
> <title>Untitled Page</title>
> <script type="text/javascript" src="/js/jQuery.js"></script>
> <script type ="text/javascript" >
> function doIt(form,cntrl,vtype)
> {
> alert(cntrl);
> var ntxt="";
> var parID = $('#txt_num'); //this variable doesn't
> fill
> alert(parID);
>
>
> }
> </script>
>
> </head>
> <body>
>
> <form id="form1" runat="server">
> <table class="style1">
> <tr>
> <td align="right" class="style2">
> <asp:Label ID="Label1" runat="server"
> Text="Numeric"></
> asp:Label>
> </td>
> <td class="style3">
> <asp:TextBox ID="txt_num" runat="server" Width="195px"
> OnChange ="doIt(this.form,this,2)"></asp:TextBox>
> </td>
> <td>
> &nbsp;</td>
> <td>
> &nbsp;</td>
> </tr>
>
> </table>
> </form>
>
> </body>
> </html>

[jQuery] Re: JQuery Unable to Read Margins When Set to Auto?

when i have something's css set to auto, and try to get its value from
within FF3.5, mine returns nothing-- not even 0px.

On Aug 31, 3:33 pm, phpn1b <alv...@gmail.com> wrote:
> anyone?
>
> On Aug 25, 4:46 pm, phpn1b <alv...@gmail.com> wrote:
>
> > I have a simple test page with a div where the left and right margins
> > are set to auto. The div has a width and when viewed it's centered on
> > the page. When I try to read the left or right margin with jQuery it's
> > returned as "0px" instead of auto. I'm trying to add a div to a page
> > and set the new div's margin to match an existing div's margin, but
> > without being able to read "auto", it's failing. My tests using alert($
> > ('#container').css('margin-left')); and alert($('#container').css
> > ('marginLeft')); yielded the same results.

[jQuery] Re: Https mixed content error with ajax

Is the include script to the jQuery library also HTTPs? All external
content (CSS, Scripts, Images) has to be over HTTPs to not create the
mixed content error.

On Aug 31, 5:10 am, UglySkinnyGuy <evan.e.free...@gmail.com> wrote:
> Have a wierd issue. It seems that if I use jquery in https and do an
> ajax call out and then update the dom with the resulting html I get an
> HTTPS unsecure content warning. Now the content is all https and there
> are not http calls any where so I'm wondering if this has been seen
> before. I've dug very deep looking for the issus and if I take jquery
> out of the equation it doesn't give me an error. But I've standardized
> jquery as part of the site and don't want to mix straight old
> javascript with jquery, if I can avoid it.
>
> So any help would be useful.

[jQuery] Re: Find reverse? Parent?

maybe $(this).prev(".picture").append(

????

On Aug 31, 2:36 pm, Jottae <smallj...@gmail.com> wrote:
> Hi guys.
>
> I am wanting to click the link with the class "test" the function
> append href taking the (already up and running) appears in the
> "picture" div, but only in the same div "lol" where there is also a
> class "test".
>
> suggestions?
>
> -----------------------------------------------
> This is html code:
>
> <div id="lol">
> <div class="picture">
> lorem ipson
> </div>
>
> <a class=" test" href="http://www.google.com/myckey.gif">Google</a>
>
> </div>
>
> <div id="lol">
> <div class="picture">
> lorem ipson
> </div>
>
> <a class=" test" href="http://www.google.com/donald.gif">Google</a>
>
> </div>
>
> -----------------------------------------------------------
> This is code jQuery.
>
> $(".test").click(function() {
>      var url = this.href;
>      $(".picture").append("<img src='+url+'/>");   --->> This is
> wrong  ---  find reverse?parent?
>     });
>
> Thanks. =D

[jQuery] Re: Validation question

whoops! instead of '#divSteps3' i meant 'div.error-message' .... next
time i should proofread

On Aug 31, 3:34 pm, "#micah" <micah.a.sm...@gmail.com> wrote:
> only perform the post if the error message div isnt there, or has no
> text in it
>
> if( !($('#divSteps3')==undefined) && $('div.error-message').text
> ().length>0) )
>
> something like that
>
> On Aug 31, 1:53 pm, "Dave Maharaj :: WidePixels.com"
>
> <d...@widepixels.com> wrote:
> > I have this script
>
> > $(document).ready( function() {
>
> >     $('#username').blur( function () {
>
> >         fieldName = $(this).attr('id');
> >         fieldValue = $(this).val();
>
> >         $.post('/users/ajax_validate', {
> >                                         field: fieldName,
> >                                         value: fieldValue
> >                                         },
> >                function(error) {
>
> >                    if(error.length != 0) {                
>
> >                        $('#username').after('<div class="error-message"
> > id="'+ fieldName +'-exists">' + error + '</div>');
> >                    }
> >                    else {
> >                        $('#' + fieldName + '-exists').remove();
> >                    }
> >                });
> >      });  
>
> > });
>
> > Which sends a requet to determine if the username is taken...pretty simple
> > if so it displays Please choose another message. My problem is if the user
> > goes back to the field and then leaves without changing it it sends the
> > request again and then shows
> > "Please choose another name"
> > "Please choose another name"
>
> > How can I modify the script so if there is an error and not fixed to leave
> > the message and not repeat it?
>
> > Dave

[jQuery] Re: Validation question

only perform the post if the error message div isnt there, or has no
text in it


if( !($('#divSteps3')==undefined) && $('div.error-message').text
().length>0) )

something like that

On Aug 31, 1:53 pm, "Dave Maharaj :: WidePixels.com"
<d...@widepixels.com> wrote:
> I have this script
>
> $(document).ready( function() {
>
>     $('#username').blur( function () {
>
>         fieldName = $(this).attr('id');
>         fieldValue = $(this).val();
>
>         $.post('/users/ajax_validate', {
>                                         field: fieldName,
>                                         value: fieldValue
>                                         },
>                function(error) {
>
>                    if(error.length != 0) {                
>
>                        $('#username').after('<div class="error-message"
> id="'+ fieldName +'-exists">' + error + '</div>');
>                    }
>                    else {
>                        $('#' + fieldName + '-exists').remove();
>                    }
>                });
>      });  
>
> });
>
> Which sends a requet to determine if the username is taken...pretty simple
> if so it displays Please choose another message. My problem is if the user
> goes back to the field and then leaves without changing it it sends the
> request again and then shows
> "Please choose another name"
> "Please choose another name"
>
> How can I modify the script so if there is an error and not fixed to leave
> the message and not repeat it?
>
> Dave

[jQuery] Re: ajax request form in one page, is it possible ?

jQuery (and most Javascript AJAX libraries) automatically sends the
request header:
X-Requested-With: XMLHttpRequest
You don't have to do anything for that.
If you use something like Firebug for Firefox you can see these
headers being sent and returned.

On the PHP side, you can use the follow code to retrieve header
values:
$_SERVER['HTTP_X_REQUESTED_WITH']
(do a print_r($_SERVER) to find these things)

You'd probably do something like this:
if (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER
['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') {
// do something
}


On Aug 29, 9:37 am, Danny <bad.ch...@gmail.com> wrote:
> I understand that ive to use - X-Requested-With then I did search a
> bit about that and I found this code,
>
>  $.ajaxSetup({
>       headers: {"X-Requested-With":"Ajax"}
>     });
>
> but I still don't understand how should I send the parameters to the
> same file and get them in the server side (PHP)
> I hot to get answer,
>
> thanks!

[jQuery] Re: JQuery Unable to Read Margins When Set to Auto?

anyone?

On Aug 25, 4:46 pm, phpn1b <alv...@gmail.com> wrote:
> I have a simple test page with a div where the left and right margins
> are set to auto. The div has a width and when viewed it's centered on
> the page. When I try to read the left or right margin with jQuery it's
> returned as "0px" instead of auto. I'm trying to add a div to a page
> and set the new div's margin to match an existing div's margin, but
> without being able to read "auto", it's failing. My tests using alert($
> ('#container').css('margin-left')); and alert($('#container').css
> ('marginLeft')); yielded the same results.

[jQuery] jQuery Accoridion - Dynamically Adding Content to it

Lets say you have the standard jQuery UI Accordion markup-- such as

<div id="wrapper">
<h3><a href="#">Header Text</a></h3>
<div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas
ligula risus, imperdiet ac malesuada at, vestibulum in felis. Ut
ornare ullamcorper mattis. In eu enim at urna sollicitudin dignissim.
Praesent et lacus ac metus tristique aliquam. Proin vehicula urna
vitae est interdum tempus.</p>
</div>
<h3><a href="#">Header Text</a></h3>
<div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas
ligula risus, imperdiet ac malesuada at, vestibulum in felis. Ut
ornare ullamcorper mattis. In eu enim at urna sollicitudin dignissim.
Praesent et lacus ac metus tristique aliquam. Proin vehicula urna
vitae est interdum tempus.</p>
</div>
</div>

After you call $("#wapper").accordion(), is there a way to $
("#wrapper").append([content]) in new content and have the accordion
still work? Whenever I try the functionality and styling does not
take.

Thx for the help, guys

[jQuery] Re: jqModal +r14 updated

2009/4/30 Steven Garcia <stevendgarcia@gmail.com>:
>
> I cant seem to get jQuery's live function working with this at all.
>
> I tried all variations possible, including dmitri's suggestion
>
> The modal does indeed pop up, but instead of loading the ajax content,
> I get redirected to that URL.
>
> Anyone else run into this problem?
>

me too!

using FF 3.5.2
this worked for me:

$('#jqModal').jqm({ajax:'@href'});

// open the modal whenever anchor links on the page are clicked
$('a.thickbox').bind('click',function(){
$('#jqModal').jqmShow(this);
return false;
});

eek. return false is a must, why does nobody mentions? live works the
same way. just use live() instead of bind()

1/ jqmShow(this)
2/ return false;

cheers,
robert

[jQuery] Re: listnav functionality applied to tables -- is this possible?

like this?
http://bluemoon.reverse.net/~aquaone/tablefilter/

feel free to grab it. not sure when i'll have the time to finalize it but it's quite full-featured at present.

aquaone


On Mon, Aug 31, 2009 at 09:07, wshawn <shawn@sanityllc.com> wrote:

I am curious if the devs would be interested in making this same
functionality work with tables.

I would be interested in seeing similar functionality available via
listnav for the first td of a tr.

Essentially, grabbing the first character, as a reference for
filtering only that later from the nav bar. as you are currently doing
for ul/ol and li tags.

I have already accomplished this via ajax, but I believe using the
concepts in this listnav would reduce overall server load.

I am currently using tablesorter to handle a php/ mysql return.  I
would like to see your plugin filter what table sorter is having to
deal with.

Any ideas if this is indeed something you would be interested in
working on?

[jQuery] Re: Content slider?

The Cycle plugin has some callback functions, which let you perform
actions on the current or next slide. They are the "before" and
"after" options

http://www.malsup.com/jquery/cycle/options.html

Perhaps using one of the callbacks to initialize the tabs() would
help?

It's also possible that the issue is CSS related.


On Aug 31, 5:43 pm, Dennis Madsen <den...@demaweb.dk> wrote:
> Ok, it also "flicking" on my Firefox :(
>
> On Aug 31, 6:29 pm, amuhlou <amysch...@gmail.com> wrote:
>
> > Cycle can be used to cycle through anything:http://www.malsup.com/jquery/cycle/int2.html
>
> > Check out the very last example on the page.
>
> > On Aug 31, 4:26 pm, Dennis Madsen <den...@demaweb.dk> wrote:
>
> > > AnythingSlider: Is also flicking when using Accordion fra jQuery UI.
> > > Malsup Cycle: It seems that this cycle only use img?
>
> > > On Aug 31, 5:18 pm, amuhlou <amysch...@gmail.com> wrote:
>
> > > > A couple other slider options you could try:
>
> > > >http://css-tricks.com/anythingslider-jquery-plugin/
>
> > > >http://malsup.com/jquery/cycle/
>
> > > > On Aug 31, 2:45 pm, Dennis Madsen <den...@demaweb.dk> wrote:
>
> > > > > I'm trying to use the plugin, but have problem when using a Accordion
> > > > > from Query UI on one of the pages.
> > > > > You can see this sample page:http://dennismadsen.com/uploads/easyslider1.7/
>
> > > > > When sliding eg. from page 1 to 4 the Accordion is "flacking" when
> > > > > sliding. I only see that problem in my Firefox. No problem in IE or
> > > > > Chrome.
> > > > > I've recorded a video of it:http://dennismadsen.com/uploads/easyslider1.7/flacking.avi
>
> > > > > How can I solve that problem?
>
> > > > > On Aug 31, 3:55 pm, "Richard D. Worth" <rdwo...@gmail.com> wrote:
>
> > > > > > That content slider is not limited to images. The previous version has a
> > > > > > demo that shows this:http://cssglobe.com/lab/easyslider1.5/05.html
>
> > > > > > <http://cssglobe.com/lab/easyslider1.5/05.html>but the newer version
> > > > > > supports this as well. I recommend you give it a try.
>
> > > > > > - Richard
>
> > > > > > On Mon, Aug 31, 2009 at 9:43 AM, Dennis Madsen <den...@demaweb.dk> wrote:
>
> > > > > > > I'm searching for a content slider like this:
> > > > > > >http://cssglobe.com/lab/easyslider1.7/01.html
>
> > > > > > > It almost fits my need but I would like to use it to slide the content
> > > > > > > on my page - not simple images.
>
> > > > > > > I've have three pages; competences, references and contact.
> > > > > > > Furthermore I have a frontpage with three link-icons - one for every
> > > > > > > subpages. Therefore I need to have four slides inside my content
> > > > > > > slider, but I should should have the ability to handle a click on the
> > > > > > > icons the first slide (=my frontpage) so that it slide to the
> > > > > > > respective page.
>
> > > > > > > I hope someone know a plugin which fits my needs?

[jQuery] Find reverse? Parent?

Hi guys.

I am wanting to click the link with the class "test" the function
append href taking the (already up and running) appears in the
"picture" div, but only in the same div "lol" where there is also a
class "test".

suggestions?

-----------------------------------------------
This is html code:

<div id="lol">
<div class="picture">
lorem ipson
</div>

<a class=" test" href="http://www.google.com/myckey.gif">Google</a>

</div>

<div id="lol">
<div class="picture">
lorem ipson
</div>

<a class=" test" href="http://www.google.com/donald.gif">Google</a>

</div>

-----------------------------------------------------------
This is code jQuery.

$(".test").click(function() {
var url = this.href;
$(".picture").append("<img src='+url+'/>"); --->> This is
wrong --- find reverse?parent?
});

Thanks. =D

[jQuery] Re: trying to talk to googleadservices via $.getScript()

yip, that was it!

2009/8/31 Jan Limpens <jan.limpens@gmail.com>
aha! adbock?? maybe...


2009/8/31 Jan Limpens <jan.limpens@gmail.com>
firebug gives me this in html view:
<script src="http://www.googleadservices.com/pagead/conversion.js?_=1251741522425">
</script>

the qs is not mine, if jq adds is to prevent caching it is actually doing a bad service to me.
the given address works just fine.



2009/8/31 Jan Limpens <jan.limpens@gmail.com>
in chrome and ie that is. firefox still eats it.


2009/8/31 Jan Limpens <jan.limpens@gmail.com>
magic! the second, I wrote this post, it started to work.

2009/8/31 Jan Limpens <jan.limpens@gmail.com>

Hello,

miraculously enough, this call

$.getScript('http://www.googleadservices.com/pagead/conversion.js', function() { confirm('g'); });

does nothing and this one

$.getScript('http://tracker.webtraffic.com.br/statistic.js', function() {confirm('w')});

gives me the dialog. On firefox and IE (didn't test the others).

This is completely weird, but it does not surprise me from a company, that gives this kind of noop code to us:

if (1) {
  var google_conversion_value = 1;
}

I mean, seriously (taken from
http://www.google.com/adwords/learningcenter/text/19216.html)!

But - anyone did come around this somehow, or maybe test this in his/her firebug console?

--
Jan



--
Jan



--
Jan



--
Jan



--
Jan



--
Jan

[jQuery] Re: trying to talk to googleadservices via $.getScript()

aha! adbock?? maybe...

2009/8/31 Jan Limpens <jan.limpens@gmail.com>
firebug gives me this in html view:
<script src="http://www.googleadservices.com/pagead/conversion.js?_=1251741522425">
</script>

the qs is not mine, if jq adds is to prevent caching it is actually doing a bad service to me.
the given address works just fine.



2009/8/31 Jan Limpens <jan.limpens@gmail.com>
in chrome and ie that is. firefox still eats it.


2009/8/31 Jan Limpens <jan.limpens@gmail.com>
magic! the second, I wrote this post, it started to work.

2009/8/31 Jan Limpens <jan.limpens@gmail.com>

Hello,

miraculously enough, this call

$.getScript('http://www.googleadservices.com/pagead/conversion.js', function() { confirm('g'); });

does nothing and this one

$.getScript('http://tracker.webtraffic.com.br/statistic.js', function() {confirm('w')});

gives me the dialog. On firefox and IE (didn't test the others).

This is completely weird, but it does not surprise me from a company, that gives this kind of noop code to us:

if (1) {
  var google_conversion_value = 1;
}

I mean, seriously (taken from
http://www.google.com/adwords/learningcenter/text/19216.html)!

But - anyone did come around this somehow, or maybe test this in his/her firebug console?

--
Jan



--
Jan



--
Jan



--
Jan



--
Jan

[jQuery] Re: trying to talk to googleadservices via $.getScript()

firebug gives me this in html view:
<script src="http://www.googleadservices.com/pagead/conversion.js?_=1251741522425">
</script>

the qs is not mine, if jq adds is to prevent caching it is actually doing a bad service to me.
the given address works just fine.


2009/8/31 Jan Limpens <jan.limpens@gmail.com>
in chrome and ie that is. firefox still eats it.


2009/8/31 Jan Limpens <jan.limpens@gmail.com>
magic! the second, I wrote this post, it started to work.

2009/8/31 Jan Limpens <jan.limpens@gmail.com>

Hello,

miraculously enough, this call

$.getScript('http://www.googleadservices.com/pagead/conversion.js', function() { confirm('g'); });

does nothing and this one

$.getScript('http://tracker.webtraffic.com.br/statistic.js', function() {confirm('w')});

gives me the dialog. On firefox and IE (didn't test the others).

This is completely weird, but it does not surprise me from a company, that gives this kind of noop code to us:

if (1) {
  var google_conversion_value = 1;
}

I mean, seriously (taken from
http://www.google.com/adwords/learningcenter/text/19216.html)!

But - anyone did come around this somehow, or maybe test this in his/her firebug console?

--
Jan



--
Jan



--
Jan



--
Jan

[jQuery] Re: trying to talk to googleadservices via $.getScript()

in chrome and ie that is. firefox still eats it.

2009/8/31 Jan Limpens <jan.limpens@gmail.com>
magic! the second, I wrote this post, it started to work.

2009/8/31 Jan Limpens <jan.limpens@gmail.com>

Hello,

miraculously enough, this call

$.getScript('http://www.googleadservices.com/pagead/conversion.js', function() { confirm('g'); });

does nothing and this one

$.getScript('http://tracker.webtraffic.com.br/statistic.js', function() {confirm('w')});

gives me the dialog. On firefox and IE (didn't test the others).

This is completely weird, but it does not surprise me from a company, that gives this kind of noop code to us:

if (1) {
  var google_conversion_value = 1;
}

I mean, seriously (taken from
http://www.google.com/adwords/learningcenter/text/19216.html)!

But - anyone did come around this somehow, or maybe test this in his/her firebug console?

--
Jan



--
Jan



--
Jan

comp.lang.c++ - 25 new messages in 15 topics - digest

comp.lang.c++
http://groups.google.com/group/comp.lang.c++?hl=en

comp.lang.c++@googlegroups.com

Today's topics:

* Need help with printing Unicode! (C++ on CentOS) - 8 messages, 3 authors
http://groups.google.com/group/comp.lang.c++/t/e7dff48651d7be5d?hl=en
* Modifying non-const object from const function? - 4 messages, 3 authors
http://groups.google.com/group/comp.lang.c++/t/154135abd9d930e7?hl=en
* wholesale cheap Jewelrys ★factory price★ by paypal at www.salewto.com - 1
messages, 1 author
http://groups.google.com/group/comp.lang.c++/t/ffa0507c41a346b0?hl=en
* ► ◄Discount Nike, Jordan ect brand shoes at website: www.fjrjtrade.com with
high quality (paypal payment) - 1 messages, 1 author
http://groups.google.com/group/comp.lang.c++/t/691a58fff78a5931?hl=en
* ┡┢┣Cheap wholesale brand handbags(Gucci,LV,Chanel,Versace,D&G,AAA True
Leather....)---www.fjrjtrade.com (paypal payment) - 1 messages, 1 author
http://groups.google.com/group/comp.lang.c++/t/443e70f4af189c91?hl=en
* Discount Wholesale Ralph Lauren Polo T-shirt <www.guoshitrade.com> - 1
messages, 1 author
http://groups.google.com/group/comp.lang.c++/t/e53b81f80a1e8fed?hl=en
* www.e-wholesaler.c om )Discount Nike Jordan Shoes Wholesalers - 1 messages,
1 author
http://groups.google.com/group/comp.lang.c++/t/96b281b40b5323ef?hl=en
* ☆∵№⒈∴☆ wholesale cheap brand jerseys by paypal at www.salewto.com - 1
messages, 1 author
http://groups.google.com/group/comp.lang.c++/t/1eef8b343fba37d2?hl=en
* OT: "Search This Group" not working here - 1 messages, 1 author
http://groups.google.com/group/comp.lang.c++/t/62aa2491f31521e5?hl=en
* ^●^Sneaker of Nike,Jordan,Gucci,Adidas,Puma,EdhardyShox,Max,Free,Rift◎Polo,
Lacoste,BBC,Gucci,Armani,LV,Christina Audigier Tshirt and Jeans www.toptradea.
com◎●◎ - 1 messages, 1 author
http://groups.google.com/group/comp.lang.c++/t/4f70dc00dd9afd31?hl=en
* ♡*★*♡HOT SALE Brand Sunglasses Gucci,Chanel,DG,Armani,LV,Coach,Edhardy,
Burberry,Prada,Ferri etc Sunglasses WWW.toptradea.com - 1 messages, 1 author
http://groups.google.com/group/comp.lang.c++/t/6e3ace3cdc4aaacb?hl=en
* ๑இ๑Fashion Handbags supplier ๑♥๑www.toptradea.com๑♥๑ Lady Handbags Juicy,
Gucci,LV,Prada,D&G,Edhardy,Chanel,Coach, Jimmy-Hoo,Burberry,DB - 1 messages, 1
author
http://groups.google.com/group/comp.lang.c++/t/c1e7a6e27384b977?hl=en
* ♥๑↖◎↗๑♥wholesale Iphone,Nokia,Vertu,Samsung,Blackberry,etc brand mobile
phones,wifi mobiles,TV mobiles,Music Mobiles, Touch Mobiles, Dual sim card
dual standby Chinese mobile phones - 1 messages, 1 author
http://groups.google.com/group/comp.lang.c++/t/4101ad3118ef418a?hl=en
* ﻬஐ ﻬஐHigh quality discount Puma Shoes and LV Shoes at website: www.fjrjtrade.
com (paypal payment) - 1 messages, 1 author
http://groups.google.com/group/comp.lang.c++/t/c0995a1d698af2f3?hl=en
* ♂⊙√⌒Paypal paymen Wholesale Cheap Boots brand shoes ( www.salewto.com ) - 1
messages, 1 author
http://groups.google.com/group/comp.lang.c++/t/14cee8bfd84283fb?hl=en

==============================================================================
TOPIC: Need help with printing Unicode! (C++ on CentOS)
http://groups.google.com/group/comp.lang.c++/t/e7dff48651d7be5d?hl=en
==============================================================================

== 1 of 8 ==
Date: Mon, Aug 31 2009 6:10 am
From: Zerex71


On Aug 28, 2:00 pm, Juha Nieminen <nos...@thanks.invalid> wrote:
> Zerex71 wrote:
> > I'm sure this has been addressed before but I've hunted all over the
> > web and no one seems to provide a comprehensive answer.  I just want
> > to do one thing: Under CentOS, in a simple C++ program, I'd like to be
> > able to print Unicode characters to a console output.  For example,
> > I'd like to print the musical flat, natural, and sharp signs.
>
> > Here's what I've done so far:
> > 1. Using Eclipse, created a small C++ console project.
> > 2. Declare three chars, each of type wchar_t, and assigned them their
> > Unicode values (0x266d, 0x266e, 0x266f).
> > 3. Attempted to print them out using wprintf().
>
>   You can't output raw unicode values and expect your terminal emulator
> to understand them. You have to output them *encoded* with the same
> encoding scheme as your terminal. Usually this will be UTF-8.
>
>   Either output the encoded values directly, or use an UTF-8 encoding
> library to convert your raw unicode values into UTF-8 codes. One such
> library is, for example:http://utfcpp.sourceforge.net/

That encoding library looked way too involved for what I want to do,
and in the end, I didn't see any simple method to set my encoding or
do whatever I need to do to print my characters. I just want to pass
my Unicode code string to a function and have it print out correctly.
Thanks.


== 2 of 8 ==
Date: Mon, Aug 31 2009 6:21 am
From: Zerex71


> What locale are you using?  And what encoding does the font use?
> You need to ensure that the encoding in the locale is the same
> as the one used by the renderer for the font.

How do I check what encoding the font has?


== 3 of 8 ==
Date: Mon, Aug 31 2009 7:03 am
From: Zerex71


On Aug 29, 7:42 am, James Kanze <james.ka...@gmail.com> wrote:
> On Aug 28, 6:51 pm, Zerex71 <mfeher1...@gmail.com> wrote:
>
> > I'm sure this has been addressed before but I've hunted all
> > over the web and no one seems to provide a comprehensive
> > answer.  I just want to do one thing: Under CentOS, in a
> > simple C++ program, I'd like to be able to print Unicode
> > characters to a console output.
>
> I've never heard of CentOS, so I can't address any system
> specific problems here (and they would be off topic).
>
> > For example, I'd like to print the musical flat, natural, and
> > sharp signs.
> > Here's what I've done so far:
> > 1. Using Eclipse, created a small C++ console project.
> > 2. Declare three chars, each of type wchar_t, and assigned them their
> > Unicode values (0x266d, 0x266e, 0x266f).
> > 3. Attempted to print them out using wprintf().
> > 4. Set my output console to a font which can represent the characters
> > (glyphs?) - Lucida Console
>
> What locale are you using?  And what encoding does the font use?
> You need to ensure that the encoding in the locale is the same
> as the one used by the renderer for the font.
>
> > A few observations:
> > 1. I can go to a Unicode code page website and copy the
> > characters displayed and paste them into my source file which
> > is in the same font (that was my first trick which ultimately
> > blew me out of the water because Eclipse was bitching about
> > not being to save the files due to encoding...tried changing
> > it...then it promptly deleted all my lines and left me with a
> > bunch of NUL).
>
> First, a source file isn't in a "font".  A source file is a
> sequence of text characters, in a certain encoding.  A font
> defines how specific characters will be rendered.
>
> Secondly, in order to be displayable everywhere, I think that
> the Unicode code pages use images, and not characters, for the
> characters in the code pages.  This allows displaying characters
> which aren't in any font installed on the machine.  There's no
> way copy/pasting an image to your source file can possibly work.
>
> > 2. Mixing cout and wprintf results in the wprintf statements being
> > totally ignored.
>
> You've raised an interesting point.  According to the C standard
> (relevant to wprintf), you can't mix wide and narrow output on
> the same stream (in this case, stdout).  C++ has a similar
> restriction---if you've output to cout, use of wcout becomes
> illegal, and vice versa.  And since stdout and cout/wcout are
> supposed to use the same stream, and are synchronized with one
> another (by default), I'm pretty sure that the intent is not to
> allow this either.  In general, all of your IO to a given source
> or sink should be of the same type; if you want to output
> wchar_t somewhere, all output should be as wchar_t.
>
> > 3. Using only wprintf results in "Sign: ?" displayed in the
> > console output, even though it can display the glyphs
> > correctly when I pasted them (1.)
>
> Probably a question of locale.  In the "C" locale, most
> implementations only allow characters in the range 0...127 when
> converting wchar_t to char.
>
> For wprintf, you'll have to set the global locale.  For
> std::wcout, you'll have to imbue the desired locale (since the
> object was constructed using the global locale before you could
> modify the global locale).
>
> > 4. Calling setlocale() as directed by an example has no effect
> > on my program.
>
> What did you use as an argument to setlocale()?  (But this is
> very OS dependent.  I know how it works under Unix, but not for
> other systems.)
>
> > 5. Using fwide() to determine if my setup is legit works
> > because I don't hit the exit condition that I wrote for that
> > test.
> > So, I don't know what else to try to get this to work.
> > There's a lot of stuff about Unicode on Windows out there but
> > I'm not doing Windows, and figured the Linux community might
> > have an answer.
>
> Linux is pretty simple.  Just use a UTF-8 locale and a UTF-8
> encoded font, and everything works pretty well.  For that
> matter, under Unix, if all you're concerned with is a few
> special characters, I'd just manually encode them as strings in
> UTF-8, and output them as char.  Most (in not all) of the
> locales simply pass all char straight through, without worrying
> whether they're legal or not.  So instead of a wchar_t with
> 0x266D, you'd use:
>     char const flat[] = "\xE2\x99\xAD" ;
> and output that directly.  (At least, that's what I think should
> happen.  I don't get any output for the above, but it works with
> other Unicode characters, so I suspect that the problem is
> simply that my fonts don't contain the characters you give.  All
> of the Wingbats (codes 2600 to 26FF) display as a simple blank
> on my Linux machine.)
>
> --
> James Kanze (GABI Software)             email:james.ka...@gmail.com
> Conseils en informatique orientée objet/
>                    Beratung in objektorientierter Datenverarbeitung
> 9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

So let me see if I can explain my understanding of this whole thing
(because I want to finally solve this problem, having been trying to
figure it out off and on for quite a while):

1. Let's say I have a file, and it's nothing more than a string of 1s
and 0s when you get right down to it.
2. The encoding that I will use to read/display the file specifies to
the OS how to group and treat the bits.
3. A selected encoding then specifies (for lack of a better term) a
set of codepages from which to select the characters to display (i.e.
based on a particular grouping of bits/bytes, this will index into an
appropriate set of characters).
4. The bytes are presented to the display portion of the OS and it
will reference the operable font in the window, editor, dialog, etc.
to display the individual characters.
5. If the specified font doesn't have a glyph for a given byte
combination, the resulting behavior will be unpredictable.
6. If it does, it will basically do a table lookup for the appropriate
glyph, and fetch that glyph and dump it to the screen.

Is any of this correct?


== 4 of 8 ==
Date: Mon, Aug 31 2009 7:14 am
From: Zerex71


For reference, the page I am using to obtain my chars is
http://www.atm.ox.ac.uk/user/iwi/charmap.html.
I select 2 and 6 from the codepage dropdowns at top, then click on 6D,
6E, and 6F, and it places the chars up above in an output box. I can
copy those chars and paste them into my sourcecode editor and they
display properly, but run immediately into problems if I try to save
or compile. But they display just fine.

Mike


== 5 of 8 ==
Date: Mon, Aug 31 2009 9:13 am
From: Juha Nieminen


Zerex71 wrote:
> That encoding library looked way too involved for what I want to do,

That's because you didn't really find out how to use it. You were most
probably confused by the large example at the beginning. The library is
really simple to use.

std::string encodedString;
for(size_t i = 0; i < unicodeValues.size(); ++i)
utf8::append(unicodeValues[i], std::back_inserter(encodedString);
std::cout << encodedString;

> and in the end, I didn't see any simple method to set my encoding or
> do whatever I need to do to print my characters. I just want to pass
> my Unicode code string to a function and have it print out correctly.
> Thanks.

The above code does exactly that.


== 6 of 8 ==
Date: Mon, Aug 31 2009 9:46 am
From: Zerex71


On Aug 31, 12:13 pm, Juha Nieminen <nos...@thanks.invalid> wrote:
> Zerex71 wrote:
> > That encoding library looked way too involved for what I want to do,
>
>   That's because you didn't really find out how to use it. You were most
> probably confused by the large example at the beginning. The library is
> really simple to use.
>
> std::string encodedString;
> for(size_t i = 0; i < unicodeValues.size(); ++i)
>     utf8::append(unicodeValues[i], std::back_inserter(encodedString);
> std::cout << encodedString;
>
> > and in the end, I didn't see any simple method to set my encoding or
> > do whatever I need to do to print my characters.  I just want to pass
> > my Unicode code string to a function and have it print out correctly.
> > Thanks.
>
>   The above code does exactly that.

Thanks for your information, but you know what, I really don't care to
spend hours looking for something that should be fairly simple to do.
I wasn't "confused" by anything. I just don't have time an interest
in becoming a Unicode expert to do something very simple. I wonder if
this means I have to download and install the utfcpp library, or if I
can just do this as-is in the code above.


== 7 of 8 ==
Date: Mon, Aug 31 2009 10:00 am
From: Paavo Helde


Zerex71 <mfeher1971@gmail.com> kirjutas:

>
> Also, help me understand in your example how my code 0x266D gets
> turned into "\xE2\x99\xAD".

Presumably this is UTF-8 encoding of your character.

One thing is the encoding your source file uses, and the other is what
you want to output. I'm not familiar with Eclipse so I cannot comment on
the former. If needed, you can use iconv() to convert from your encoding
to UTF-8.

The following program works for me on a SuSE Linux and produces some kind
of music sign on the console. My locale is LANG=en_US.utf8.

#include <stdio.h>

int main() {
const unsigned char test[4]={0xE2, 0x99, 0xAD, 0};
printf("Test: %s\n", test);
}

hth
Paavo

== 8 of 8 ==
Date: Mon, Aug 31 2009 10:54 am
From: Zerex71


On Aug 31, 1:00 pm, Paavo Helde <pa...@nospam.please.ee> wrote:
> Zerex71 <mfeher1...@gmail.com> kirjutas:
>
>
>
> > Also, help me understand in your example how my code 0x266D gets
> > turned into "\xE2\x99\xAD".
>
> Presumably this is UTF-8 encoding of your character.
>
> One thing is the encoding your source file uses, and the other is what
> you want to output. I'm not familiar with Eclipse so I cannot comment on
> the former. If needed, you can use iconv() to convert from your encoding
> to UTF-8.
>
> The following program works for me on a SuSE Linux and produces some kind
> of music sign on the console. My locale is LANG=en_US.utf8.
>
> #include <stdio.h>
>
> int main() {
>   const unsigned char test[4]={0xE2, 0x99, 0xAD, 0};
>   printf("Test: %s\n", test);
>
> }
>
> hth
> Paavo

Hi Paavo,

Thanks for the help. I will try that. I still do not see how 0x266D
=> E299AD. Where is the conversion for that explained?

==============================================================================
TOPIC: Modifying non-const object from const function?
http://groups.google.com/group/comp.lang.c++/t/154135abd9d930e7?hl=en
==============================================================================

== 1 of 4 ==
Date: Mon, Aug 31 2009 6:16 am
From: "fdm"


hm I can only see the replies when using google and not when I use Outlook
Express. Maybe its my news server that is slow.

"fdm" <fdm@gk.com> wrote in message
news:4a9ba6cc$0$279$14726298@news.sunsite.dk...
>I have a const function where it should be possible to modify an object but
>not the argument:
>
> void myfun(const int point) const {
>
> m_Container.push_back(point);
>
>
> }
>
> But I get the error:
>
> Error 13 error C2662: 'std::vector<_Ty>::push_back' : cannot convert
> 'this' pointer from 'const std::vector<_Ty>' to 'std::vector<_Ty> &'
>
> The above is a simplified example of a library that I am supposed to
> modify without changing the function declarations. How do I make it
> possible to modify the std::vector m_Container from the above const
> function?
>
>

== 2 of 4 ==
Date: Mon, Aug 31 2009 6:26 am
From: Jerry Coffin


In article <4a9ba6cc$0$279$14726298@news.sunsite.dk>, fdm@gk.com
says...
>
> I have a const function where it should be possible to modify an object but
> not the argument:
>
> void myfun(const int point) const {
>
> m_Container.push_back(point);
>
>
> }
>
> But I get the error:
>
> Error 13 error C2662: 'std::vector<_Ty>::push_back' : cannot convert 'this'
> pointer from 'const std::vector<_Ty>' to 'std::vector<_Ty> &'
>
> The above is a simplified example of a library that I am supposed to modify
> without changing the function declarations. How do I make it possible to
> modify the std::vector m_Container from the above const function?

If you're modifying a member variable, then either the function
shouldn't be declared const:

void myfun(const int point) {

m_Container.push_back(point);
}

Or m_Container should be defined to be mutable. As a stop-gap, you
can cast away the constness, though this is generally a poor idea.

--
Later,
Jerry.


== 3 of 4 ==
Date: Mon, Aug 31 2009 6:54 am
From: Francesco


On 31 Ago, 15:26, Jerry Coffin <jerryvcof...@yahoo.com> wrote:
> In article <4a9ba6cc$0$279$14726...@news.sunsite.dk>, f...@gk.com
> says...
>
>
>
>
>
> > I have a const function where it should be possible to modify an object but
> > not the argument:
>
> > void myfun(const int point) const {
>
> >    m_Container.push_back(point);
>
> > }
>
> > But I get the error:
>
> > Error 13 error C2662: 'std::vector<_Ty>::push_back' : cannot convert 'this'
> > pointer from 'const std::vector<_Ty>' to 'std::vector<_Ty> &'
>
> > The above is a simplified example of a library that I am supposed to modify
> > without changing the function declarations. How do I make it possible to
> > modify the std::vector m_Container from the above const function?
>
> If you're modifying a member variable, then either the function
> shouldn't be declared const:
>
> void myfun(const int point) {
>
>         m_Container.push_back(point);
>
> }
>
> Or m_Container should be defined to be mutable. As a stop-gap, you
> can cast away the constness, though this is generally a poor idea.

Jerry, just a question to clear a doubt of mine: did you receive
Pascal's and my replies to this thread? I'm noticing that sometimes
people posts replies which contain already pointed out things, and
that's strange. Maybe Google Groups is not sending out replies to the
other servers immediately as expected, hence the delay noticed by fdm
and your reply... I don't know.

Just out of curiosity,
king regards,
Francesco


== 4 of 4 ==
Date: Mon, Aug 31 2009 6:59 am
From: Francesco


On 31 Ago, 15:16, "fdm" <f...@gk.com> wrote:
> hm I can only see the replies when using google and not when I use Outlook
> Express. Maybe its my news server that is slow.
>
> "fdm" <f...@gk.com> wrote in message
>
> news:4a9ba6cc$0$279$14726298@news.sunsite.dk...
>
> >I have a const function where it should be possible to modify an object but
> >not the argument:
>
> > void myfun(const int point) const {
>
> >   m_Container.push_back(point);
>
> > }
>
> > But I get the error:
>
> > Error 13 error C2662: 'std::vector<_Ty>::push_back' : cannot convert
> > 'this' pointer from 'const std::vector<_Ty>' to 'std::vector<_Ty> &'
>
> > The above is a simplified example of a library that I am supposed to
> > modify without changing the function declarations. How do I make it
> > possible to modify the std::vector m_Container from the above const
> > function?
>
>

Fine, now you read all of our replies. Have you solved this issue?

And what about the other thread of yours that's still open - the one
titled "Possible problem with smartpointers (for the hardcore C++
gurus)"?

Best regards,
Francesco

==============================================================================
TOPIC: wholesale cheap Jewelrys ★factory price★ by paypal at www.salewto.com
http://groups.google.com/group/comp.lang.c++/t/ffa0507c41a346b0?hl=en
==============================================================================

== 1 of 1 ==
Date: Mon, Aug 31 2009 7:05 am
From: salewto


Chanel Jewelrys at www.salewto.com
Bracelet earing necklace

Coach Jewelrys at www.salewto.com
Bracelet earing necklace

D&G Jewelrys at www.salewto.com
Bracelet earing necklace

Dior Jewelrys at www.salewto.com
Bracelet earing necklace

Gucci Jewelrys at www.salewto.com
Bracelet earing necklace

Juicy Jewelrys at www.salewto.com
Bracelet earing necklace

Links Jewelrys at www.salewto.com
Bracelet earing necklace

LV Jewelrys at www.salewto.com
Bracelet earing necklace

Pandora Chain Jewelrys at www.salewto.com
Bracelet earing necklace

Swarovski Chain Jewelrys at www.salewto.com
Bracelet earing necklace

Tiffany Jewelrys at www.salewto.com
Bracelet earing necklace

TOUS Jewelrys at www.salewto.com
Bracelet earing necklace

==============================================================================
TOPIC: ► ◄Discount Nike, Jordan ect brand shoes at website: www.fjrjtrade.com
with high quality (paypal payment)
http://groups.google.com/group/comp.lang.c++/t/691a58fff78a5931?hl=en
==============================================================================

== 1 of 1 ==
Date: Mon, Aug 31 2009 7:14 am
From: candy


► ◄Discount Nike, Jordan ect brand shoes at website: www.fjrjtrade.com
with high quality (paypal payment)

We provide many brands of shoes.such as Nike shoes, Adidas shoes,
Puma
shoes. All of our products are in high quality with competitive
price,safe and fast delivery.You can mix sizes and colors when place
order.

(http://www.fjrjtrade.com/category-921-b0-Nike-Shox.html)
high quality Nike shoes
high quality Nike shoes wholesale
high quality Nike Blazer shoes
high quality Nike Court Force shoes
high quality Nike Dunk SB shoes

(http://www.fjrjtrade.com/category-920-b0-Nike-Air-Max.html)
high quality Nike Air Max shoes
high quality Nike Air Max 87 shoes
high quality Nike Air Max 90 shoes
high quality Nike Air Max 07 shoes
high quality Nike Air Max 8018 shoes
high quality Nike Zoom Air 0908 shoes
high quality Nike KAKE shoes
high quality Nike Air Max 360 shoes
high quality Nike Air Max 2009 shoes

(http://www.fjrjtrade.com/category-916-b0-Air-Force-one.html)
high quality Nike Air Force1 shoes
high quality Nike Air Force1 Premium 07 shoes
high quality Nike Air Force1 25 Low shoes
high quality Nike Air Force 1 low players shoes
high quality Nike Air Force 1 08 shoes
high quality Nike Air Force 1 09 shoes
high quality Nike Wmns shoes
high quality Nike Wmns Tennis Classic shoes
high quality Nike Wmns Blazer Low classic shoes
high quality Nike WMNS Air Force 1 shoes
high quality Nike WMNS Air Force 1 High QK shoes
high quality Nike Wmns Air Force 1 Sprm 6 shoes
high quality Nike CORTEZ shoes
high quality Nike CORTEZ Basic Leather shoes
high quality Nike CORTEZ Premium Rainbow shoes
high quality Nike Free 2008 shoes

(http://www.fjrjtrade.com/category-914-b0-Adidas-Shoes.html)
high quality Adidas shoes
high quality Adidas shoes wholesale
high quality Adidas 06 Adicolor shoes
high quality Adidas Stam Smith shoes
high quality Adidas 3266 shoes
high quality Adidas 1841 shoes
high quality Adidas Superstar shoes

(http://www.fjrjtrade.com/category-923-b0-Puma-Shoes.html)
high quality Puma shoes
high quality Puma shoes wholesale
high quality Puma Yokaichi shoes
high quality Puma Yokaichi running shoes
high quality Puma R0110puma shoes
high quality Puma speed cat shoes


high quality Birkenstock shoes
high quality Birkenstock shoes wholesale
high quality Birkenstock DAVOS shoes

(http://www.fjrjtrade.com/category-920-b0-Nike-Air-Max.html)
Nike shoes
Nike Blazer shoes
Nike Court Force shoes
Nike Dunk SB shoes
Nike Air Max shoes
Nike Air Max 87 shoes
Nike Air Max 90 shoes
Nike Air Max 360 shoes
Nike Air Max 2009 shoes
Nike Air Max 8018 shoes
Nike Air Max 0908 shoes
Nike Air Max 07 shoes

(http://www.fjrjtrade.com/category-916-b0-Air-Force-one.html)
Nike Air Force1 shoes
Nike Air Force1 Premium 07 shoes
Nike Air Force1 25 Low shoes
Nike Air Force 1 low players shoes
Nike Air Force 1 08 shoes
Nike Air Force 1 09 shoes
Nike Wmns shoes
Nike Wmns Tennis Classic shoes
Nike Wmns Blazer Low classic shoes
Nike WMNS Air Force 1 shoes
Nike WMNS Air Force 1 High QK shoes
Nike Wmns Air Force 1 Sprm 6 shoes
Nike CORTEZ shoes
Nike CORTEZ Basic Leather shoes
Nike CORTEZ Premium Rainbow shoes
Nike Free 2008 shoes

(http://www.fjrjtrade.com/category-914-b0-Adidas-Shoes.html)
Adidas shoes
Adidas 06 Adicolor shoes
Adidas 06 Adicolor Y5, P5, R5, BL5, BK5, G5, W5
Adidas 06 Adicolor P6, W6, R6, BL6, BK6, Y6, G6, W3
Adidas Stam Smith shoes
Adidas 3266 shoes
Adidas 1841 shoes
Adidas Superstar shoes

(http://www.fjrjtrade.com/category-923-b0-Puma-Shoes.html)
Puma shoes
Puma Yokaichi shoes
Puma Yokaichi running shoes
Puma R0110puma shoes
Puma speed cat shoes


Birkenstock shoes
Birkenstock DAVOS shoes


web: http://www.fjrjtrade.com

==============================================================================
TOPIC: ┡┢┣Cheap wholesale brand handbags(Gucci,LV,Chanel,Versace,D&G,AAA True
Leather....)---www.fjrjtrade.com (paypal payment)
http://groups.google.com/group/comp.lang.c++/t/443e70f4af189c91?hl=en
==============================================================================

== 1 of 1 ==
Date: Mon, Aug 31 2009 8:50 am
From: candy


┡┢┣Cheap wholesale brand handbags(Gucci,LV,Chanel,Versace,D&G,AAA True
Leather....)---www.fjrjtrade.com (paypal payment)


Discount VERSACE True leather AAA Wholesale
http://www.fjrjtrade.com/category-1942-b0-Versace-Handbags.html
Discount VERSACE bags Wholesale
Discount Chanel Purse Wholesale
http://www.fjrjtrade.com/category-1208-b0-Chanel-Purse.html
Discount CHANEL bags Wholesale
Discount CHANEL True leather AAA Wholesale
http://www.fjrjtrade.com/category-1207-b0-Chanel-Handbags.html
Discount PRADA Purse Wholesale
Discount PRADA bags Wholesale
http://www.fjrjtrade.com/category-1242-b0-Prada-Handbags.html
Discount PRADA True leather AAA Wholesale
http://www.fjrjtrade.com/category-1938-b0-Prada-Handbags.html
Discount GUCCI Purse Wholesale
Discount GUCCI True leather AAA Wholesale
http://www.fjrjtrade.com/category-1216-b0-Gucci-Handbags.html
Discount Gucci bags Wholesale
Discount Gucci Purse True leather AAA Wholesale
http://www.fjrjtrade.com/category-1217-b0-Gucci-Purse.html
Discount Gucci bag Wholesale
Discount BURBERRY Purse Wholesale
Discount BURBERRY bags Wholesale
http://www.fjrjtrade.com/category-1927-b0-Burberry-Handbags.html
Discount pauesmitl bags Wholesale
Discount HERMES True leather AAA Wholesale
http://www.fjrjtrade.com/category-1930-b0-Hermes-Handbags.html
Discount HERMES Purse True leather AAA Wholesale
Discount HERMES bags Wholesale
Discount LV bags Wholesale
Discount LV Purse True leather AAA Wholesale
http://www.fjrjtrade.com/category-1221-b0-LV-Handbags.html
Discount LV Purse Wholesale
http://www.fjrjtrade.com/category-1222-b0-LV-Purse.html
Discount LV True leather AAA Wholesale
Discount D&G bag Wholesale
Discount D&G Purse Wholesale
Discount D&G bags Wholesale
Discount D&G Purse True leather AAA Wholesale
http://www.fjrjtrade.com/category-1943-b0-DG-Handbags.html
Discount ED Purse Wholesale
Discount EDHardy bags Wholesale
http://www.fjrjtrade.com/category-1223-b0-UGG-Handbags.html
Discount UGG bag Wholesale
Discount CHLOE True leather AAA Wholesale
http://www.fjrjtrade.com/category-1209-b0-Chloe-Handbags.html
Discount CHLOE bags Wholesale
Discount Chloe Purse True leather AAA Wholesale
http://www.fjrjtrade.com/category-1210-b0-Chloe-Purse.html
Discount JIMMY CHOO Purse True leather AAA Wholesale
http://www.fjrjtrade.com/category-1219-b0-JIMMY-CHOO-Handbags.html
Discount JIMMYTOO bags Wholesale
Discount JIMMY THOO True leather AAA Wholesale

Discount paul smith bags Wholesale

More detail land, address:

http://www.fjrjtrade.com

==============================================================================
TOPIC: Discount Wholesale Ralph Lauren Polo T-shirt <www.guoshitrade.com>
http://groups.google.com/group/comp.lang.c++/t/e53b81f80a1e8fed?hl=en
==============================================================================

== 1 of 1 ==
Date: Mon, Aug 31 2009 8:55 am
From: wendy


wholesale AFF T-shirt
wholesale ARMANI T-shirt (www.guoshitrade.com paypal payment, free
shipping)
wholesale BAPE T-shirt
wholesale BBC T-shirt
wholesale BOSS T-shirt
wholesale Burberry T-shirt
wholesale CA T-shirt men's
wholesale CA T-shirt women's
wholesale COOGI T-shirt
wholesale CRYSTAL ROCK women's (www.guoshitrade.com paypal payment,
free shipping)
wholesale D&G T-shirt
wholesale DIESEL T-shirt
wholesale DSQUARED T-shirt men's
wholesale DSQUARED T-shirt women's
wholesale Eck? Unltd T-shirt
wholesale ED T-shirt men's
wholesale ED T-shirt women's
wholesale EVISU T-shirt (www.guoshitrade.com paypal payment, free
shipping)
wholesale GGG T-shirt
wholesale G-STAR T-shirt
wholesale HLST T-Shirt (www.guoshitrade.com paypal payment, free
shipping)
wholesale Lacoste T-shirt
wholesale Lacoste T-shirt women's
wholesale LRG T-shirt
wholesale O&L T-shirt (www.guoshitrade.com paypal payment, free
shipping)
wholesale POLO 3 T-shirt
wholesale 4 T-shirt
wholesale POLO 5 T-shirt
wholesale POLO T-shirt men's
POLO T-shirt women's
Prada T-shirt (www.guoshitrade.com paypal payment, free shipping)
RUEHL T-Shirt
SMET T-Shirt men's
SMET T-Shirt women's
VERSACE T-shirt
A&F Abercrombie & Fitch T-shirt men's
A&F Abercrombie & Fitch T-shirt women's
wholesale Lacoste polo t shirt
wholesale Lacoste t shirt solid color
wholesale Lacoste sweater
wholesale Lacoste shirt
wholesale Lacoste
wholesale Ralph lauren (www.guoshitrade.com paypal payment, free
shipping)
wholesale Ralph Lauren polo
wholesale Polo
wholesale Ralph lauren polo t shirt
wholesale Ralph lauren t shirt (www.guoshitrade.com paypal payment,
free shipping)
wholesale Abercrombie & fitch shirt
wholesale Burberry shirt
wholesale Burberry t shirt (www.guoshitrade.com paypal payment, free
shipping)
wholesale NBA sports jersey

==============================================================================
TOPIC: www.e-wholesaler.c om )Discount Nike Jordan Shoes Wholesalers
http://groups.google.com/group/comp.lang.c++/t/96b281b40b5323ef?hl=en
==============================================================================

== 1 of 1 ==
Date: Mon, Aug 31 2009 8:57 am
From: e-wholesaler


paypal payment)( www.e-wholesaler.c om )Discount Nike air jordans
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max 90
Sneakers
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max 91
Supplier
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max 95
Shoes
Supplier
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max 97
Trainers
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max 2003
Wholesale
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max 2004
Shoes Wholesale
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max 2005
Shop
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max 2006
Shoes Shop
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max 360
Catalogs
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max Ltd
Shoes Catalogs
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max Tn
Men's
Shoes
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max Tn 2
Women's Shoes
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max Tn 3
Customize
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max Tn 4
Shoes Customize
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Max Tn 6
Supply
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox NZ Shoes
Supply
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox OZ Sale
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox TL Store
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox TL 2
Shoes
Store
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox TL 3
Distributor
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox Bmw
Shoes
Distributor
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox Elite
Shoes
Manufacturer
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox Monster
Manufacturer
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox R4
Running
Shoes
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox R5 Mens
Shoes
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox Ride
Womens
Shoes
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox Rival
Shoes
Wholesaler
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox Energia
Wholesaler
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox LV
Sneaker
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox Turbo
Suppliers
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox Classic
Shoes Suppliers
(paypal payment)( www.e-wholesaler.c om )Discount Nike Shox Dendara
Trainer
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 1
Seller
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 2
Shoes Seller
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan3
Collection
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 4
Shoes Collection
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 5
Chaussure Shoes
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 6
Catalog
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 7
Shoes Catalog
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 8
Customized
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 9
Shoes Customized
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 10
Wholesalers
(paypal payment)( www.e-wholesaler.c om )Discount Nike Jordan 11
Shoes
Wholesalers
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 12
Factory
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 13
Shoes Factory
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 14
Shoes Sell
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 16
Exporter
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 17
Shoes Exporter
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 18
Offer
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 19
Shoes Offer
(paypal payment)( www.e-wholesaler.c om )Discount Nike Air Jordan 20
Manufacture
(paypal payment)( www.e-wholesaler.c om )Discount Nike Jordan 21
Shoes
Manufacturer


==============================================================================
TOPIC: ☆∵№⒈∴☆ wholesale cheap brand jerseys by paypal at www.salewto.com
http://groups.google.com/group/comp.lang.c++/t/1eef8b343fba37d2?hl=en
==============================================================================

== 1 of 1 ==
Date: Mon, Aug 31 2009 9:38 am
From: salewto


wholesale hotsale arizona cardinals in www.salewto.com
wholesale hotsale Atlanta Falcons in www.salewto.com
wholesale hotsale Baltimore Ravens in www.salewto.com
wholesale hotsale Buffalo Bills in www.salewto.com
wholesale hotsale Carolina Panthers in www.salewto.com
wholesale hotsale Chicago Bears in www.salewto.com
wholesale hotsale Cincinnati Bengals in www.salewto.com
wholesale hotsale Cleveland Browns in www.salewto.com
wholesale hotsale Dallas Cowboys in www.salewto.com
wholesale hotsale Danver Broncos in www.salewto.com
wholesale hotsale Detroit Lions in www.salewto.com
wholesale hotsale Green Bay Packers in www.salewto.com
wholesale hotsale Houston Texans in www.salewto.com
wholesale hotsale Indianapolis Colts in www.salewto.com
wholesale hotsale Jacksonville Jaguars David in www.salewto.com
wholesale hotsale Kansas City Chiefs in www.salewto.com
wholesale hotsale Miami Dolphins in www.salewto.com
wholesale hotsale Minnesota Vikings in www.salewto.com
wholesale hotsale New England Patriots in www.salewto.com
wholesale hotsale New Orleans Sains in www.salewto.com
wholesale hotsale New York Giants in www.salewto.com
wholesale hotsale New York Jets in www.salewto.com
wholesale hotsale Okaland Raiders in www.salewto.com
wholesale hotsale Philadelphia Eagles in www.salewto.com
wholesale hotsale Pittsburgh Steelers in www.salewto.com
wholesale hotsale Pro Bowl in www.salewto.com
wholesale hotsale San Diego Charger in www.salewto.com
wholesale hotsale San Francisco 49ers in www.salewto.com
wholesale hotsale Seattle Seahawks in www.salewto.com
wholesale hotsale St.Louis Rams in www.salewto.com
wholesale hotsale Super Bowl in www.salewto.com
wholesale hotsale Washington Red Skins in www.salewto.com
wholesale hotsale Tennessee Titans in www.salewto.com


Our advantages:
1) A rate quality wholesale price.
2) rapid and safe delivery time: 4-6days
3) no minute order requirement.
4) different styles, colors and sizes in stock for your reference
Whatever you need, you are free to contact me.

have a good day!!!

==============================================================================
TOPIC: OT: "Search This Group" not working here
http://groups.google.com/group/comp.lang.c++/t/62aa2491f31521e5?hl=en
==============================================================================

== 1 of 1 ==
Date: Mon, Aug 31 2009 9:46 am
From: Paul N


On 30 Aug, 20:28, Brian <c...@mailvault.com> wrote:
> I wanted to review a past thread on the subject of benchmarks and
> I entered   'O_LARGEFILE  "brian wood"' and clicked on "Search
> this group."  Google groups reported no threads matched the
> search, so I used scroogle.org/scraper.html and put in the same
> terms.  That came back with the thread I was looking for titled
> "Execution time of code?."  http://preview.tinyurl.com/l9j7or
>
> Have others had any problem like that?  When I left off the
> O_LARGEFILE and just searched on my name, the only
> threads that came up were recent threads.

I've not been getting results from "Search this group", but "Search
Groups" seems to work OK. It's odd seeing the first produce no results
while the second produces a single result in the correct group.

Paul.

==============================================================================
TOPIC: ^●^Sneaker of Nike,Jordan,Gucci,Adidas,Puma,EdhardyShox,Max,Free,
Rift◎Polo,Lacoste,BBC,Gucci,Armani,LV,Christina Audigier Tshirt and Jeans www.
toptradea.com◎●◎
http://groups.google.com/group/comp.lang.c++/t/4f70dc00dd9afd31?hl=en
==============================================================================

== 1 of 1 ==
Date: Mon, Aug 31 2009 9:54 am
From: peng Selina


^●^Sneaker of Nike www.toptradea.com,Jordan www.toptradea.com,Gucci
www.toptradea.com,Adidas www.toptradea.com,Puma www.toptradea.com,Edhardy
www.toptradea.com Shox www.toptradea.com,Max www.toptradea.com,Free
www.toptradea.com,Rift www.toptradea.com◎Polo www.toptradea.com,Lacoste
www.toptradea.com,BBC www.toptradea.com,Gucci www.toptradea.com,Armani
www.toptradea.com,LV, www.toptradea.com Christina Audigier Tshirt and
Jeans www.toptradea.com◎●◎

==============================================================================
TOPIC: ♡*★*♡HOT SALE Brand Sunglasses Gucci,Chanel,DG,Armani,LV,Coach,Edhardy,
Burberry,Prada,Ferri etc Sunglasses WWW.toptradea.com
http://groups.google.com/group/comp.lang.c++/t/6e3ace3cdc4aaacb?hl=en
==============================================================================

== 1 of 1 ==
Date: Mon, Aug 31 2009 9:55 am
From: peng Selina


♡*★*♡HOT SALE Brand Sunglasses Gucci Sunglasses WWW.toptradea.com,Chanel
Sunglasses WWW.toptradea.com,DG Sunglasses WWW.toptradea.com,Armani
Sunglasses WWW.toptradea.com,LV Sunglasses WWW.toptradea.com,Coach
Sunglasses WWW.toptradea.com,Edhardy Sunglasses WWW.toptradea.com,Burberry
Sunglasses WWW.toptradea.com,Prada Sunglasses WWW.toptradea.com,Ferri
Sunglasses WWW.toptradea.com etc Sunglasses WWW.toptradea.com

==============================================================================
TOPIC: ๑இ๑Fashion Handbags supplier ๑♥๑www.toptradea.com๑♥๑ Lady Handbags
Juicy,Gucci,LV,Prada,D&G,Edhardy,Chanel,Coach, Jimmy-Hoo,Burberry,DB
http://groups.google.com/group/comp.lang.c++/t/c1e7a6e27384b977?hl=en
==============================================================================

== 1 of 1 ==
Date: Mon, Aug 31 2009 9:56 am
From: peng Selina


๑இ๑Fashion Handbags supplier ๑♥๑www.toptradea.com๑♥๑ Lady Handbags
www.toptradea.com Juicy,Gucci Handbags www.toptradea.com ,LV Handbags
www.toptradea.com ,Prada Handbags www.toptradea.com ,D&G Handbags
www.toptradea.com ,Edhardy Handbags www.toptradea.com ,Chanel Handbags
www.toptradea.com ,Coach Handbags www.toptradea.com , Jimmy-Hoo
Handbags www.toptradea.com ,Burberry Handbags www.toptradea.com ,DB
Handbags www.toptradea.com

==============================================================================
TOPIC: ♥๑↖◎↗๑♥wholesale Iphone,Nokia,Vertu,Samsung,Blackberry,etc brand mobile
phones,wifi mobiles,TV mobiles,Music Mobiles, Touch Mobiles, Dual sim card
dual standby Chinese mobile phones
http://groups.google.com/group/comp.lang.c++/t/4101ad3118ef418a?hl=en
==============================================================================

== 1 of 1 ==
Date: Mon, Aug 31 2009 9:58 am
From: peng Selina


♥๑↖◎↗๑♥wholesale Iphone www.toptradea.com,Nokia www.toptradea.com,Vertu
www.toptradea.com,Samsung www.toptradea.com,Blackberry www.toptradea.com,etc
brand mobile phones www.toptradea.com,wifi mobiles www.toptradea.com,TV
mobiles www.toptradea.com,Music Mobiles www.toptradea.com, Touch
Mobiles www.toptradea.com, Dual sim card dual standby Chinese mobile
phones www.toptradea.com

==============================================================================
TOPIC: ﻬஐ ﻬஐHigh quality discount Puma Shoes and LV Shoes at website: www.
fjrjtrade.com (paypal payment)
http://groups.google.com/group/comp.lang.c++/t/c0995a1d698af2f3?hl=en
==============================================================================

== 1 of 1 ==
Date: Mon, Aug 31 2009 10:36 am
From: candy


ﻬஐ ﻬஐHigh quality discount Puma Shoes and LV Shoes at website:
www.fjrjtrade.com (paypal payment)


Welcome to visit www.fjrjtrade.com

Men size 40,41,42,43,44,45,46. Women size 36,37,38,39,40.

High quality wholesale Air Force One shoes, Nike Jordan, Nike,Air Max,
Nike Shox, UGG Shoes, Puma Shoes, Nike shoes, Adidas Shoes, Christian
Louboutin, Chanel Shoes, Coach Shoes, D&G Shoes, Dior Shoes, ED Hardy
Shoes, Evisu Shoes, Fendi Shoes, AFF shoes, Bape shoes, Gucci Shoes,
Hogan shoes, Bikkembergs Shoes, Dsquared Shoes, LV Shoes, Timberland
Shoes, Boss shoes, Versace Shoes, Prada Shoes, Lacoste Shoes, Mauri
Shoes, DC shoes ect. More other shoes at website www.fjrjtrade.com


Cheap wholesale Puma Shoes

http://www.fjrjtrade.com/category-923-b0-Puma-Shoes.html

Cheap wholesale Puma M&W Shoes

http://www.fjrjtrade.com/category-1836-b0-Puma-Shoes-MW.html

Cheap wholesale Puma Men Shoes

http://www.fjrjtrade.com/category-1837-b0-Puma-Shoes-Man.html

Cheap wholesale Puma AAA Shoes

http://www.fjrjtrade.com/category-1129-b0-PUMA-AAA.html

Cheap wholesale Puma Women Shoes

http://www.fjrjtrade.com/category-1131-b0-Puma-Woman-Shoes.html


Men size 40,41,42,43,44,45,46. Women size 36,37,38,39,40.

Cheap wholesale LV Shoes

http://www.fjrjtrade.com/category-940-b0-LV-Shoes.html

Cheap wholesale LV Boots

http://www.fjrjtrade.com/category-1877-b0-LV-Boots.html

Cheap wholesale LV Men High Shoes

http://www.fjrjtrade.com/category-1878-b0-LV-Shoes-Man-High.html

Cheap wholesale LV Men Shoes

http://www.fjrjtrade.com/category-1619-b0-LV-Shoes-Man.html

Cheap wholesale LV Women Shoes

http://www.fjrjtrade.com/category-1617-b0-LV-Shoes-Woman.html

Cheap wholesale LV Kids' Shoes

http://www.fjrjtrade.com/category-1618-b0-LV-Shoes-Kids.html

Cheap wholesale Puma Shoes

http://www.fjrjtrade.com/category-923-b0-Puma-Shoes.html

Cheap wholesale Puma M&W Shoes

http://www.fjrjtrade.com/category-1836-b0-Puma-Shoes-MW.html

Cheap wholesale Puma Men Shoes

http://www.fjrjtrade.com/category-1837-b0-Puma-Shoes-Man.html

Cheap wholesale Puma AAA Shoes

http://www.fjrjtrade.com/category-1129-b0-PUMA-AAA.html

Cheap wholesale Puma Women Shoes

http://www.fjrjtrade.com/category-1131-b0-Puma-Woman-Shoes.html


Men size 40,41,42,43,44,45,46. Women size 36,37,38,39,40.

Cheap wholesale LV Shoes

http://www.fjrjtrade.com/category-940-b0-LV-Shoes.html

Cheap wholesale LV Boots

http://www.fjrjtrade.com/category-1877-b0-LV-Boots.html

Cheap wholesale LV Men High Shoes

http://www.fjrjtrade.com/category-1878-b0-LV-Shoes-Man-High.html

Cheap wholesale LV Men Shoes

http://www.fjrjtrade.com/category-1619-b0-LV-Shoes-Man.html

Cheap wholesale LV Women Shoes

http://www.fjrjtrade.com/category-1617-b0-LV-Shoes-Woman.html

Cheap wholesale LV Kids' Shoes

http://www.fjrjtrade.com/category-1618-b0-LV-Shoes-Kids.html


More Others Shoes At WEBSITE:
http://www.fjrjtrade.com

==============================================================================
TOPIC: ♂⊙√⌒Paypal paymen Wholesale Cheap Boots brand shoes ( www.salewto.com

http://groups.google.com/group/comp.lang.c++/t/14cee8bfd84283fb?hl=en
==============================================================================

== 1 of 1 ==
Date: Mon, Aug 31 2009 10:49 am
From: salewto


Footwear (paypal payment)( www.salewto.com )

wholesale DIOR Boots in www.salewto.com
wholesale DIOR Sandal in www.salewto.com
wholesale Burberry Boots in www.salewto.com
wholesale Burberry Sandal in www.salewto.com
wholesale Chanel Boots in www.salewto.com
wholesale Chanel Sandal in www.salewto.com
wholesale COACH Boots in www.salewto.com
wholesale COACH Sandal in www.salewto.com
wholesale D&G Boots in www.salewto.com
wholesale DIOR Boots in www.salewto.com
wholesale DIOR Sandal in www.salewto.com
wholesale ED Hardy Boots in www.salewto.com
wholesale Fendi Boots in www.salewto.com
wholesale GUCCI Boots in www.salewto.com
wholesale GUCCI Sandal in www.salewto.com
wholesale LV Boots in www.salewto.com
wholesale LV Sandal in www.salewto.com
wholesale UGG Boots Shoes in www.salewto.com
wholesale Versace Boots in www.salewto.com
Paul Smith shoes (paypal payment)( www.salewto.com )
Jordan shoes (paypal payment)( www.salewto.com )
Bape shoes (paypal payment)( www.salewto.com )
Chanel shoes (paypal payment)( www.salewto.com )
D&G shoes (paypal payment)( www.salewto.com )
Dior shoes (paypal payment)( www.salewto.com )
ED hardy shoes (paypal payment)( www.salewto.com )
Evisu shoes (paypal payment)( www.salewto.com )
Fendi shoes (paypal payment)( www.salewto.com )
Gucci shoe (paypal payment)( www.salewto.com )
Hogan shoes (paypal payment)( www.salewto.com )
Lv shoes (paypal payment)( www.salewto.com )
Prada shoes (paypal payment)( www.salewto.com )
Timberland shoes (paypal payment)( www.salewto.com )
Tous shoes (paypal payment)( www.salewto.com )
Ugg shoes (paypal payment)( www.salewto.com )
Ice cream shoes (paypal payment)( www.salewto.com )
Sebago shoes (paypal payment)( www.salewto.com )
Lacoste shoes (paypal payment)( www.salewto.com )
Air force one shoes (paypal payment)( www.salewto.com )
TODS shoes (paypal payment)( www.salewto.com )
AF shoes (paypal payment)( www.salewto.com )


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

You received this message because you are subscribed to the Google Groups "comp.lang.c++"
group.

To post to this group, visit http://groups.google.com/group/comp.lang.c++?hl=en

To unsubscribe from this group, send email to comp.lang.c+++unsubscribe@googlegroups.com

To change the way you get mail from this group, visit:
http://groups.google.com/group/comp.lang.c++/subscribe?hl=en

To report abuse, send email explaining the problem to abuse@googlegroups.com

==============================================================================
Google Groups: http://groups.google.com/?hl=en