How to make [Search Mozilla Support] honor specification of a phrase?

Many search facilities will honor a phrase. If I specify "tab character" [including the quote marks!], they will search for the phrase "tab character" and only return links to documents with that phrase. As I discovered when trying to answer a question about controlling how the tab character is rendered, the search function in Mozilla support returns links to everything dealing with browser tabs. I tried using s-quote marks rather than d-quote marks, but that did not help. I could not find any button with a name like "Advanced" to get more control over the search. So far as I can tell, [Search Mozilla Support] insists on treating the phrase "tab character" as a search for anything with the word "tab" or the word "character".

Yes, using quotes to specify a search term is one of the most wanted features for me (and probably a lot of others) on this forum, but it still hasn't been implemented.<br />
Only a Google site search will work to search for a multi-word phrase enclosed in quotes.

Similar Messages

  • How to make a function take a specific group of constants

    I know i asked this before, maybe a year ago, but I totally forgot how to do it, and I haven't been programming much lately. But I was wondering if somebody can tell me how to make a certain function take specific constants. For example there are java functions, of which I can not remember that will only take certain values. So the function might look like:
    public getInfo(String INFONAME){}Where INFONAME has to be like one of two names or something, and they are constants that are defined somewhere else. If anybody knows what I mean by this, and knows how to create functions like that please let me know. Thank you.

    here's an overkill,
    import java.util.*;
    abstract class DoWhatever {
        public static Hashtable ht = null;
        public static Object DoWhat( String s, Object obj ) {
         if( null == ht ) {
             ht = new Hashtable();
             ht.put( ThisDoWhatever.NAME, new ThisDoWhatever() );
             ht.put( ThatDoWhatever.NAME, new ThatDoWhatever() );        
         return ( (DoWhatever) ht.get( s ) ).doWhatever( obj );
        public abstract Object doWhatever( Object obj );
    class ThisDoWhatever extends DoWhatever {
        public final static String NAME = "this";
        public Object doWhatever( Object obj ) {
         System.out.println( NAME );
         return null;
    class ThatDoWhatever extends DoWhatever {
        public final static String NAME = "that";
        public Object doWhatever( Object obj ) {
         System.out.println( NAME );
         return null;
    public class DoThisOrThat {
        public static void main( String[] args ) {
         DoWhatever.DoWhat( args[ 0 ], null );
    }

  • How do I search threads within a specific support community, i.e.. Apple Remote Desktop?

    Very frustrated with new layout of discussion forums...
    How do I search key words within threads within a specific support community?
    For Example I want to search the phrase 'couldn't collect' within the Apple Remote Desktop community.

    Thanks for your response. I'm well aware of the global search field.
    My problem with that is if I search the term 'couldn't collect', (in reference to a very specific Error message generated while running a report via Apple Remote Desktop Task Server) I get a slew of useless hits that have either the words 'couldn't' and/or 'collect' or any variation of those words, such as 'collection'.
    I'm looking for responses that are very specific to Apple Remote Desktop only. I don't have hours to weed through thousands of responses that have no bearing to that at all.
    Searching within specific sub-communities was possible before this new layout. Whatever happened to the booelean searches and searching by phrases and the 'advanced' searches? Do they still exist?

  • How To Make Search Query Showing the Result As List of Buttons.

    Can some one give me an idea how to start to make a Search Query showing the results as list of buttons.. i have already have my buttons with names. i just dont know how to make a search query.
    this is my on screen keyboard i made..
    im making a system that the result were a list of buttons.. showing like this
    This was supposed to be the output of the query that i need to do..
    Please help me.. i just need a idea or tips how to make this one.

    Here is code I posted recently for another question
    Public Class Form1
    Const BUTTON_SIZE As Integer = 20
    Const SPACE As Integer = 5
    Sub New()
    ' This call is required by the Windows Form Designer.
    InitializeComponent()
    ' Add any initialization after the InitializeComponent() call.
    Dim buttons As New List(Of List(Of MyRadioButton))
    For row = 1 To 6
    Dim newRow As New List(Of MyRadioButton)
    buttons.Add(newRow)
    For col = 1 To 6
    Dim button As New MyRadioButton()
    button.row = row
    button.col = col
    button.Height = BUTTON_SIZE
    button.Width = BUTTON_SIZE
    button.Left = col * (BUTTON_SIZE + SPACE)
    button.Top = row * (BUTTON_SIZE + SPACE)
    button.Name = String.Format("radGr1{0}_{1}", row.ToString(), col.ToString())
    Me.Controls.Add(button)
    newRow.Add(button)
    AddHandler button.CheckedChanged, AddressOf Radio_Change
    Next col
    Next row
    End Sub
    Private Sub Radio_Change(ByVal sender As Object, ByVal e As System.EventArgs)
    Dim button As MyRadioButton = CType(sender, MyRadioButton)
    Dim row As Integer = button.row
    Dim col As Integer = button.col
    End Sub
    End Class
    Public Class MyRadioButton
    Inherits RadioButton
    Public row As Integer
    Public col As Integer
    End Class
    jdweng

  • HT204266 How can I search to find a specific app in the store?

    How can I search for a specific app I the iPad App Store?

    Go the featured tab of the App Store and tap in the Search Store box in the upper right corner next to the magnifying glass icon.

  • How to make search between two dates accept null not obligatory search proplem

    Hi guys when i search record between two dates it works ok success but you must enter date from and dateto first to  to make search
    i will show what i need from this example
    I need to search dynamic by 4 textbox
    1-datefrom
    2-dateto
    3-EmployeeNo
    4-EmployeeName
    but search i need must be dynamic meaning
    if i enter employee no only give me employee no found in database
    if i enter employee name give me employees found with this name using like
    if i enter all 4 text box null and enter button search get all data
    but i have proplem in this query when i need to search by click search button
    i must write date from and date to firstly then write employee no or employee name if i need to search
    so that i need to search by employee no alone or employee name alone without using date from and date to
    And if i search without using datefrom and dateto it give me message error 'string wasnot recognized as valid datetime"
    my stored procedure and code as following :
    ALTER proc [dbo].[CollectsearchData]
    @StartDate datetime,
    @EndDate datetime,
    @EmployeeID  NVARCHAR(50),
    @EmployeeName  nvarchar(50)
    as
    Begin
    Declare @SQLQuery as nvarchar(2000)
    SET @SQLQuery ='SELECT * from ViewEmployeeTest Where (1=1)'
    If (@StartDate is not NULL)
    Set @SQLQuery = @SQLQuery + ' And (joindate >= '''+ Cast(@StartDate as varchar(100))+''')'
    If (@EndDate is not NULL)
    Set @SQLQuery = @SQLQuery + ' And (joindate <= '''+ Cast(@EndDate as varchar(100))+''')' 
    If @EmployeeID <>''
    Set @SQLQuery = @SQLQuery + 'And (EmployeeID = '+ @EmployeeID+') '
    If @EmployeeName Is Not Null
    Set @SQLQuery = @SQLQuery + ' AND (DriverName LIKE
    ''%'+@EmployeeName+'%'') '
    Print @sqlQuery
    Exec (@SQLQuery) 
    End
    Function using
    public DataTable SearchDataA(string ConnectionString,string EmployeeNo,string EmployeeName, DateTime StartDate, DateTime EndDate)
    SqlConnection con = new SqlConnection(ConnectionString);
    SqlCommand cmd = new SqlCommand();
    cmd.Connection = con;
    cmd.CommandType = CommandType.StoredProcedure;
    cmd.CommandText = "CollectsearchData";//work
    cmd.Parameters.Add("@StartDate", SqlDbType.DateTime);
    cmd.Parameters.Add("@EndDate", SqlDbType.DateTime);
    cmd.Parameters.Add("@EmployeeID", SqlDbType.NVarChar, 50);
    cmd.Parameters.Add("@EmployeeName", SqlDbType.NVarChar, 50);
    cmd.Parameters["@StartDate"].Value = StartDate;
    cmd.Parameters["@EndDate"].Value = EndDate;
    cmd.Parameters["@EmployeeID"].Value = EmployeeNo;
    cmd.Parameters["@EmployeeName"].Value = EmployeeName;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    DataSet ds = new DataSet();
    da.Fill(ds);
    DataTable dt = ds.Tables[0];
    return dt;
    interface button search
     try
    CultureInfo ukCulture = new CultureInfo("en-GB");             
    FleetManagment.Fleet fleet = new FleetManagment.Fleet();
    DataTable Table = fleet.SearchDataA("Data Source=" + value1 + ";Initial Catalog=" + value2 + ";User ID=" + value3 + ";Password=" + value4 + "",textBox3.Text,textBox4.Text, DateTime.Parse(textBox1.Text,
    ukCulture.DateTimeFormat), Convert.ToDateTime(textBox2.Text, ukCulture.DateTimeFormat));
    dataGridView1.DataSource = Table;
    dataGridView1.Refresh();
    catch (Exception ex)
    MessageBox.Show(ex + "error");

    Yes, the below code should not be passed any value: (I am not sure of the syntax in .NET,Sorry) 
    --If startdate len is 0 - do not assign this value
    cmd.Parameters["@StartDate"].Value = StartDate;
    --If endate len is 0 - do not assign this value
    cmd.Parameters["@EndDate"].Value = EndDate;

  • How to make a loop run for specific period of time ?

    hello !
    i'm new to labview and could'nt found how to make a loop run for 2 sec for example, and then to exit.
    Solved!
    Go to Solution.

    Hi Hookso,
    You can do it using the different loops like While loop and For Loop. Roderic has already stated how to do it using a for loop. I have illustrated in the attached vi how to do it using a while loop and Elapsed Time function. Take a look.
    Regards,
    Nitzz
    (Give kudos to good Answers and Mark it as a Solution if your problem is Solved) 
    Attachments:
    Untitled 2.vi ‏36 KB

  • How to make facebook on support nokia E71?

    i don't know how to make it.

    One more point i missed is
    AT+CEER?
    +CEER: Incompatible destination

  • How to make search engine results lead to a specific slide

    Through Google Analytics I found that a search in Bing for a particular item took the user to my page. The third slideshow, one of three tabbed slideshows on that page, is the default and shows first. The user promptly left my site because this wasn't what they were looking for. Instead, if possible for that search should land on the slide contained within the second slideshow. The search results in Bing showed the caption for the correct slide. Is there any way to make sure they then go directly to the correct slide?  I tried to add anchors to the individual slides or captions but couldn't make it work. Would that even help?

    Thats easy. How many links from each engine do you want, do you want to allow duplicate results (i.e. google and yahoo both reporting the same URL in a listing)?
    Do your own search on Google, Yahoo, etc. Look at the HTML code (typically a table) and look for unique tags or IDs that surround the URL. Google and Yahoo incorporate Click-Streaming into their search result URLs. That is, they don't provide the direct URL, but rather reference it within their own redirector which is simply a CGI program designed to count page hits and by what keyword and then simply redirect your browser to the actual page.
    If you can find out what that redirecting URL is, just filter the HTML that you get from these search engines for that URL and then you know where the URL starts and stops.
    Doing some further research will show you how to extract the actual URL from the redirecting URL. Just look at the URL and remove the www.google.com or yahoo.com from the begining and strip out all of the CGI that comes after it until you get to another URL.
    Example: http://search.google.com/redirector?this-is-google=true&url=www.some-server-that-you-want.com
    First off, we now know where within the HTML a link starts, and doing a little more filtering, we can throw out the "search.google.com" and the first CGI of "this-is-google&url=" and then simply read and file the "www.some-server-you-want.com"
    Simple.

  • How to make tomcat 5 support SSL (https)?

    Hi,
    is there a way to make tomcat support SSL (https)?
    i using: Apache 1.3.33
    with : Tomcat 5.0.28-1.00RC2
    and : jakarta-tomcat-connectors-jk-1.2.6
    JDK: j2sdk1.4.0_04
    Many thanks
    Anatolia

    Thanks very much Sherbir,
    But JSSE is integrated into the Java 2 SDK, Standard Edition, v 1.4 and above!
    here is what i'm facing:
    the documentation says:
    >
    It is important to note that configuring Tomcat to take advantage of secure sockets is usually only necessary when running it as a stand-alone web server. When running Tomcat primarily as a Servlet/JSP container behind another web server, such as Apache or Microsoft IIS, it is usually necessary to configure the primary web server to handle the SSL connections from users. Typically, this server will negotiate all SSL-related functionality, then pass on any requests destined for the Tomcat container only after decrypting those requests. Likewise, Tomcat will return cleartext responses, that will be encrypted before being returned to the user's browser. In this environment, Tomcat knows that communications between the primary web server and the client are taking place over a secure connection (because your application needs to be able to ask about this), but it does not participate in the encryption or decryption itself.
    I'm running running Tomcat as a Servlet/JSP container behind Apache 1.3.33 web server.
    So all SSL requests are handled by apache web server, but the problem I'm facing is that if i request any jsp page using https (ssl) i get plain text and it's not handled by tomcat!
    i have a test page called test.jsp:
    <html>
    <head>
    <title>JSP test page</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    </head>
    <body>
    <p>2 x 2 = <%= 2 + 2 %>
    </p>
    </body>
    </html> If I request this page using normal http request I get my results fine:
    2 x 2 = 4
    but if i request the page using https (ssl) I get a clear plain text of my jsp file content like this:
    <html>
    <head>
    <title>JSP test page</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    </head>
    <body>
    <p>2 x 2 = <%= 2 + 2 %>
    </p>
    </body>
    </html> Now how do I fix this problem and make apache passes the jsp file to tomcat if the request was https (ssl) and not send me cleartext of my file content!
    Many thanks
    Anatolia

  • How to make a spot swatch with specific name by using AppleScript?

    Hi there,
    I am trying to create a script in AppleScript to make a new spot color swatch that must be the COLOR TYPE : SPOT (with specific values). I've got it to make a global process color but can't seem to make a spot swatch. I'm using the script below :
    tell application "Adobe Illustrator"
        set docColorSpace to color space of document 1
        if (docColorSpace is CMYK) then
            set SpotColor to {cyan:100.0, magenta:0, yellow:0.0, black:0.0}
        else
            set SpotColor to {red:0.0, green:174.0, blue:239.0}
        end if
        make new spot in document 1 with properties {name:"ADHESIVE", color:SpotColor}
    end tell
    I did find an entry in an old forum that did this using javascript, however, I am not experienced with this at all and have no idea what or how to use it on a mac platform. This script is listed below.
    #target illustrator
    var docRef = app.activeDocument;
    var newCMYK = new CMYKColor();
    newCMYK.cyan = 100;
    newCMYK.magenta = 0;
    newCMYK.yellow = 0;
    newCMYK.black = 0;
    var thisSpot = docRef.spots.add();
    thisSpot.name = 'ADHESIVE';
    thisSpot.color = newCMYK;
    thisSpot.colorType = ColorModel.SPOT;
    Any help would be greatly appreciated.
    Thank you!

    You are close but missing the last property listed in the JavaScript… It translates to… 'color type:spot color'
    tell application "Adobe Illustrator"
    set docColorSpace to color space of document 1
    if (docColorSpace is CMYK) then
    set SpotColor to {cyan:100.0, magenta:0, yellow:0.0, black:0.0}
    else
    set SpotColor to {red:0.0, green:174.0, blue:239.0}
    end if
    make new spot in document 1 with properties {name:"ADHESIVE", color:SpotColor, color type:spot color}
    end tell
    BTW… The use of JavaScript in the CS apps is more common because of its 'platform independence' There is a toolkit supplied along with the CS install.

  • How to make search string for the searched text containing single quote?

    Hi all,
    When trying to search some Contacts from Eloqua, I have to make a search string which would list out some specified EmailAddress.
    Unfortunately, I meet several emails who have single quote in their spelling.
    I got 'invalid format' error when both using them directly and making single quote twice.
    Any suggestions?
    Thanks,
    Biao

    When testing, the following examples:
    GET /Api/rest/1.0/data/contacts?search=emailAddress=bm'[email protected]
    GET /Api/rest/1.0/data/contacts?search='emailAddress=bm'[email protected]'
    GET /Api/rest/1.0/data/contacts?search=emailAddress="bm'[email protected]"
    GET /Api/rest/1.0/data/contacts?search="emailAddress=bm'[email protected]"
    All return:
      "elements":
        "type":"Contact",
        "id":"1421620",
        "createdAt":"1419611518",
        "depth":"minimal",
        "name":"bm'[email protected]",
        "updatedAt":"1419611519",
        "emailAddress":"bm'[email protected]"
      "page":1,
      "pageSize":1000,
      "total":1
    Likewise, the following returns nothing:
    GET /Api/rest/1.0/data/contacts?search=emailAddress='bm'[email protected]'
    Hopefully this helps,
    Bojan

  • How to make Sales Person LOV org specific in case of Multi Org Setup

    HI,
    We are working on 11.5.10.2
    We have a multi org setup and i am required to make the sales person LOV to populate only the org specific salespersons, at the sales order, quote, service contract levels.
    Is it achiveable and if yes.....please letme know the way.
    Reg,
    Ajay Agarwal.

    Hi
    Try to play around with the security profile in the HRMS and attach it to the responsibility level
    Regards
    Ramesh Kumar S

  • How can I search for document content, specific words, in my scanned (and searchable) pdf files?

    When using spotloght to search my files for text within a scanned document, I may or may not find documents that were scanned by a scan program (ScanSnap) to a searchable PDF file on a firewire attached drive.
    Is there a specific manner that yeilds useable results 100% of the time?

    Spotlight should index PDF files (as well as Word and some other kinds of files) but it seems that PDFs are not created equal. I've seen and heard complaints that some scanner/OCR programs are saving files that aren't searchable and yours is one of them. Try opening one of the files in Preview and resaving it.

  • How to make workflow/component to be specific to Run mode

    Hi,
       I've a requirement where I need to make a workflow/compoent specific to run mode. For example, If we do configurations under 'config.author', those configurations effect in only author instnce and similary we crete all publish mode configurations under 'config.publih'.  In the similar way, I would like to make a workflow/componet specific to run modes.
    Eg: I've created a workflow under /etc/workflow/models/test/ and this 'test' workflow should be used in only publish instance.
    Is it possible to achieve in CQ?
    Thanks
    Siva

    Siva,
    I am working on similar problem. What you can do is create config like /apps/map.<Your mode example publish.dev> and then have your rules there.
    Then create another config like /apps/sling/<your config example config.publish.dev>/org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl .xml
    And then there have setting like
    resource.resolver.map.location="/apps/map.<your mode>"
    Hope it make sense.
    Yogesh
    www.wemblog.com

Maybe you are looking for

  • My iTunes is not playing any of my songs!!

    My iTunes hasn't been playing any of my songs, there is no error message, I simply don't get sound and the tracker doesn't move.  I have tried uninstalling and reinstalling iTunes several time and have run a diagnostic tests to no advail.  Any ideas?

  • Calling a form in query mode

    Hi, I have a form "Ledger" in which i have a detail block with the following fields 1. Voucher no. 2. Date 3. Account Code 4. Posted and also i have a form master detail for vouchers entry...and it has three buttons for ENTER QUERY, EXECUTE QUERY AND

  • Opening the jar file in Jdeveloper

    Hi, I have a executable jar file of the BPEL process. How can I open the jar file in Jdeveloper in my local machine to do some enhancements. i have no source code with me. While i am trying to open in JDev.. The message parts are not being created an

  • Can i Install RAC on my PC @ home

    Hi, Is it possible to install RAC on my PC @ home I've 160 GB Hard Disk and 1GB of RAM I'm planning install Oracle 10g r2 RAC with linux. what else i need ot have for this installation?

  • Extra row

    hi, good day, appreciate if some one can advice me how to get rid of the extra row in the array table. thanks in advance. Attachments: table to array.vi ‏13 KB