Ksplash-theme-generator forgets about the wallpaper

Hi,
$ KsplashThemeGenerator
Then I get a splash with right looking theme and the default background. The current desktop wallpaper gets ignored. Search turned up no trouble at all. Any ideas?
Desktop theme: Glassified
KDE 4.3.3 (vanilla)

bump

Similar Messages

  • Re: [iPlanet-JATO] Re: Use Of models in utility classes - Pease don't forget about the regular expression potential

    Namburi,
    When you said you used the Reg Exp tool, did you use it only as
    preconfigured by the iMT migrate application wizard?
    Because the default configuration of the regular expression tool will only
    target the files in your ND project directories. If you wish to target
    classes outside of the normal directory scope, you have to either modify the
    "Source Directory" property OR create another instance of the regular
    expression tool. See the "Tool" menu in the iMT to create additional tool
    instances which can each be configured to target different sets of files
    using different sets of rules.
    Usually, I utilize 3 different sets of rules files on a given migration:
    spider2jato.xml
    these are the generic conversion rules (but includes the optimized rules for
    ViewBean and Model based code, i.e. these rules do not utilize the
    RequestManager since it is not needed for code running inside the ViewBean
    or Model classes)
    I run these rules against all files.
    See the file download section of this forum for periodic updates to these
    rules.
    nonProjectFileRules.xml
    these include rules that add the necessary
    RequestManager.getRequestContext(). etc prefixes to many of the common
    calls.
    I run these rules against user module and any other classes that do not are
    not ModuleServlet, ContainerView, or Model classes.
    appXRules.xml
    these rules include application specific changes that I discover while
    working on the project. A common thing here is changing import statements
    (since the migration tool moves ND project code into different jato
    packaging structure, you sometime need to adjust imports in non-project
    classes that previously imported ND project specific packages)
    So you see, you are not limited to one set of rules at all. Just be careful
    to keep track of your backups (the regexp tool provides several options in
    its Expert Properties related to back up strategies).
    ----- Original Message -----
    From: <vnamboori@y...>
    Sent: Wednesday, August 08, 2001 6:08 AM
    Subject: [iPlanet-JATO] Re: Use Of models in utility classes - Pease don't
    forget about the regular expression potential
    Thanks Matt, Mike, Todd
    This is a great input for our migration. Though we used the existing
    Regular Expression Mapping tool, we did not change this to meet our
    own needs as mentioned by Mike.
    We would certainly incorporate this to ease our migration.
    Namburi
    --- In iPlanet-JATO@y..., "Todd Fast" <toddwork@c...> wrote:
    All--
    Great response. By the way, the Regular Expression Tool uses thePerl5 RE
    syntax as implemented by Apache OROMatcher. If you're doing lotsof these
    sorts of migration changes manually, you should definitely buy theO'Reilly
    book "Mastering Regular Expressions" and generate some rules toautomate the
    conversion. Although they are definitely confusing at first,regular
    expressions are fairly easy to understand with some documentation,and are
    superbly effective at tackling this kind of migration task.
    Todd
    ----- Original Message -----
    From: "Mike Frisino" <Michael.Frisino@S...>
    Sent: Tuesday, August 07, 2001 5:20 PM
    Subject: Re: [iPlanet-JATO] Use Of models in utility classes -Pease don't
    forget about the regular expression potential
    Also, (and Matt's document may mention this)
    Please bear in mind that this statement is not totally correct:
    Since the migration tool does not do much of conversion for
    these
    utilities we have to do manually.Remember, the iMT is a SUITE of tools. There is the extractiontool, and
    the translation tool, and the regular expression tool, and severalother
    smaller tools (like the jar and compilation tools). It is correctto state
    that the extraction and translation tools only significantlyconvert the
    primary ND project objects (the pages, the data objects, and theproject
    classes). The extraction and translation tools do minimumtranslation of the
    User Module objects (i.e. they repackage the user module classes inthe new
    jato module packages). It is correct that for all other utilityclasses
    which are not formally part of the ND project, the extraction and
    translation tools do not perform any migration.
    However, the regular expression tool can "migrate" any arbitrary
    file
    (utility classes etc) to the degree that the regular expressionrules
    correlate to the code present in the arbitrary file. So first andforemost,
    if you have alot of spider code in your non-project classes youshould
    consider using the regular expression tool and if warranted adding
    additional rules to reduce the amount of manual adjustments thatneed to be
    made. I can stress this enough. We can even help you write theregular
    expression rules if you simply identify the code pattern you wish to
    convert. Just because there is not already a regular expressionrule to
    match your need does not mean it can't be written. We have notnearly
    exhausted the possibilities.
    For example if you say, we need to convert
    CSpider.getDataObject("X");
    To
    RequestManager.getRequestContext().getModelManager().getModel(XModel.class);
    Maybe we or somebody else in the list can help write that regularexpression if it has not already been written. For instance in thelast
    updated spider2jato.xml file there is already aCSpider.getCommonPage("X")
    rule:
    <!--getPage to getViewBean-->
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[CSpider[.\s]*getPage[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[CSpider[.\s]*getPage[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[getViewBean($1ViewBean.class]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    Following this example a getDataObject to getModel would look
    like this:
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[CSpider[.\s]*getDataObject[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[CSpider[.\s]*getDataObject[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[getModel($1Model.class]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    In fact, one migration developer already wrote that rule andsubmitted it
    for inclusion in the basic set. I will post another upgrade to thebasic
    regular expression rule set, look for a "file uploaded" posting.Also,
    please consider contributing any additional generic rules that youhave
    written for inclusion in the basic set.
    Please not, that in some cases (Utility classes in particular)
    the rule
    application may be more effective as TWO sequention rules ratherthan one
    monolithic rule. Again using the example above, it will convert
    CSpider.getDataObject("Foo");
    To
    getModel(FooModel.class);
    Now that is the most effective conversion for that code if that
    code is in
    a page or data object class file. But if that code is in a Utilityclass you
    really want:
    >
    RequestManager.getRequestContext().getModelManager().getModel(FooModel.class
    So to go from
    getModel(FooModel.class);
    To
    RequestManager.getRequestContext().getModelManager().getModel(FooModel.class
    You would apply a second rule AND you would ONLY run this rule
    against
    your utility classes so that you would not otherwise affect yourViewBean
    and Model classes which are completely fine with the simplegetModel call.
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[getModel\(]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[getModel\(]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[RequestManager.getRequestContext().getModelManager().getModel(]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    A similer rule can be applied to getSession and other CSpider APIcalls.
    For instance here is the rule for converting getSession calls toleverage
    the RequestManager.
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[getSession\(\)\.]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[getSession\(\)\.]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[RequestManager.getSession().]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    ----- Original Message -----
    From: "Matthew Stevens" <matthew.stevens@e...>
    Sent: Tuesday, August 07, 2001 12:56 PM
    Subject: RE: [iPlanet-JATO] Use Of models in utility classes
    Namburi,
    I will post a document to the group site this evening which has
    the
    details
    on various tactics of migrating these type of utilities.
    Essentially,
    you
    either need to convert these utilities to Models themselves or
    keep the
    utilities as is and simply use the
    RequestManager.getRequestContext.getModelManager().getModel()
    to statically access Models.
    For CSpSelect.executeImmediate() I have an example of customhelper
    method
    as a replacement whicch uses JDBC results instead of
    CSpDBResult.
    matt
    -----Original Message-----
    From: vnamboori@y... [mailto:<a href="/group/SunONE-JATO/post?protectID=081071113213093190112061186248100208071048">vnamboori@y...</a>]
    Sent: Tuesday, August 07, 2001 3:24 PM
    Subject: [iPlanet-JATO] Use Of models in utility classes
    Hi All,
    In the present ND project we have lots of utility classes.
    These
    classes in diffrent directory. Not part of nd pages.
    In these classes we access the dataobjects and do themanipulations.
    So we access dataobjects directly like
    CSpider.getDataObject("do....");
    and then execute it.
    Since the migration tool does not do much of conversion forthese
    utilities we have to do manually.
    My question is Can we access the the models in the postmigration
    sameway or do we need requestContext?
    We have lots of utility classes which are DataObjectintensive. Can
    someone suggest a better way to migrate this kind of code.
    Thanks
    Namburi
    [email protected]
    [email protected]
    [Non-text portions of this message have been removed]
    [email protected]
    [email protected]

    Namburi,
    When you said you used the Reg Exp tool, did you use it only as
    preconfigured by the iMT migrate application wizard?
    Because the default configuration of the regular expression tool will only
    target the files in your ND project directories. If you wish to target
    classes outside of the normal directory scope, you have to either modify the
    "Source Directory" property OR create another instance of the regular
    expression tool. See the "Tool" menu in the iMT to create additional tool
    instances which can each be configured to target different sets of files
    using different sets of rules.
    Usually, I utilize 3 different sets of rules files on a given migration:
    spider2jato.xml
    these are the generic conversion rules (but includes the optimized rules for
    ViewBean and Model based code, i.e. these rules do not utilize the
    RequestManager since it is not needed for code running inside the ViewBean
    or Model classes)
    I run these rules against all files.
    See the file download section of this forum for periodic updates to these
    rules.
    nonProjectFileRules.xml
    these include rules that add the necessary
    RequestManager.getRequestContext(). etc prefixes to many of the common
    calls.
    I run these rules against user module and any other classes that do not are
    not ModuleServlet, ContainerView, or Model classes.
    appXRules.xml
    these rules include application specific changes that I discover while
    working on the project. A common thing here is changing import statements
    (since the migration tool moves ND project code into different jato
    packaging structure, you sometime need to adjust imports in non-project
    classes that previously imported ND project specific packages)
    So you see, you are not limited to one set of rules at all. Just be careful
    to keep track of your backups (the regexp tool provides several options in
    its Expert Properties related to back up strategies).
    ----- Original Message -----
    From: <vnamboori@y...>
    Sent: Wednesday, August 08, 2001 6:08 AM
    Subject: [iPlanet-JATO] Re: Use Of models in utility classes - Pease don't
    forget about the regular expression potential
    Thanks Matt, Mike, Todd
    This is a great input for our migration. Though we used the existing
    Regular Expression Mapping tool, we did not change this to meet our
    own needs as mentioned by Mike.
    We would certainly incorporate this to ease our migration.
    Namburi
    --- In iPlanet-JATO@y..., "Todd Fast" <toddwork@c...> wrote:
    All--
    Great response. By the way, the Regular Expression Tool uses thePerl5 RE
    syntax as implemented by Apache OROMatcher. If you're doing lotsof these
    sorts of migration changes manually, you should definitely buy theO'Reilly
    book "Mastering Regular Expressions" and generate some rules toautomate the
    conversion. Although they are definitely confusing at first,regular
    expressions are fairly easy to understand with some documentation,and are
    superbly effective at tackling this kind of migration task.
    Todd
    ----- Original Message -----
    From: "Mike Frisino" <Michael.Frisino@S...>
    Sent: Tuesday, August 07, 2001 5:20 PM
    Subject: Re: [iPlanet-JATO] Use Of models in utility classes -Pease don't
    forget about the regular expression potential
    Also, (and Matt's document may mention this)
    Please bear in mind that this statement is not totally correct:
    Since the migration tool does not do much of conversion for
    these
    utilities we have to do manually.Remember, the iMT is a SUITE of tools. There is the extractiontool, and
    the translation tool, and the regular expression tool, and severalother
    smaller tools (like the jar and compilation tools). It is correctto state
    that the extraction and translation tools only significantlyconvert the
    primary ND project objects (the pages, the data objects, and theproject
    classes). The extraction and translation tools do minimumtranslation of the
    User Module objects (i.e. they repackage the user module classes inthe new
    jato module packages). It is correct that for all other utilityclasses
    which are not formally part of the ND project, the extraction and
    translation tools do not perform any migration.
    However, the regular expression tool can "migrate" any arbitrary
    file
    (utility classes etc) to the degree that the regular expressionrules
    correlate to the code present in the arbitrary file. So first andforemost,
    if you have alot of spider code in your non-project classes youshould
    consider using the regular expression tool and if warranted adding
    additional rules to reduce the amount of manual adjustments thatneed to be
    made. I can stress this enough. We can even help you write theregular
    expression rules if you simply identify the code pattern you wish to
    convert. Just because there is not already a regular expressionrule to
    match your need does not mean it can't be written. We have notnearly
    exhausted the possibilities.
    For example if you say, we need to convert
    CSpider.getDataObject("X");
    To
    RequestManager.getRequestContext().getModelManager().getModel(XModel.class);
    Maybe we or somebody else in the list can help write that regularexpression if it has not already been written. For instance in thelast
    updated spider2jato.xml file there is already aCSpider.getCommonPage("X")
    rule:
    <!--getPage to getViewBean-->
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[CSpider[.\s]*getPage[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[CSpider[.\s]*getPage[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[getViewBean($1ViewBean.class]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    Following this example a getDataObject to getModel would look
    like this:
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[CSpider[.\s]*getDataObject[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[CSpider[.\s]*getDataObject[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[getModel($1Model.class]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    In fact, one migration developer already wrote that rule andsubmitted it
    for inclusion in the basic set. I will post another upgrade to thebasic
    regular expression rule set, look for a "file uploaded" posting.Also,
    please consider contributing any additional generic rules that youhave
    written for inclusion in the basic set.
    Please not, that in some cases (Utility classes in particular)
    the rule
    application may be more effective as TWO sequention rules ratherthan one
    monolithic rule. Again using the example above, it will convert
    CSpider.getDataObject("Foo");
    To
    getModel(FooModel.class);
    Now that is the most effective conversion for that code if that
    code is in
    a page or data object class file. But if that code is in a Utilityclass you
    really want:
    >
    RequestManager.getRequestContext().getModelManager().getModel(FooModel.class
    So to go from
    getModel(FooModel.class);
    To
    RequestManager.getRequestContext().getModelManager().getModel(FooModel.class
    You would apply a second rule AND you would ONLY run this rule
    against
    your utility classes so that you would not otherwise affect yourViewBean
    and Model classes which are completely fine with the simplegetModel call.
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[getModel\(]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[getModel\(]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[RequestManager.getRequestContext().getModelManager().getModel(]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    A similer rule can be applied to getSession and other CSpider APIcalls.
    For instance here is the rule for converting getSession calls toleverage
    the RequestManager.
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[getSession\(\)\.]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[getSession\(\)\.]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[RequestManager.getSession().]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    ----- Original Message -----
    From: "Matthew Stevens" <matthew.stevens@e...>
    Sent: Tuesday, August 07, 2001 12:56 PM
    Subject: RE: [iPlanet-JATO] Use Of models in utility classes
    Namburi,
    I will post a document to the group site this evening which has
    the
    details
    on various tactics of migrating these type of utilities.
    Essentially,
    you
    either need to convert these utilities to Models themselves or
    keep the
    utilities as is and simply use the
    RequestManager.getRequestContext.getModelManager().getModel()
    to statically access Models.
    For CSpSelect.executeImmediate() I have an example of customhelper
    method
    as a replacement whicch uses JDBC results instead of
    CSpDBResult.
    matt
    -----Original Message-----
    From: vnamboori@y... [mailto:<a href="/group/SunONE-JATO/post?protectID=081071113213093190112061186248100208071048">vnamboori@y...</a>]
    Sent: Tuesday, August 07, 2001 3:24 PM
    Subject: [iPlanet-JATO] Use Of models in utility classes
    Hi All,
    In the present ND project we have lots of utility classes.
    These
    classes in diffrent directory. Not part of nd pages.
    In these classes we access the dataobjects and do themanipulations.
    So we access dataobjects directly like
    CSpider.getDataObject("do....");
    and then execute it.
    Since the migration tool does not do much of conversion forthese
    utilities we have to do manually.
    My question is Can we access the the models in the postmigration
    sameway or do we need requestContext?
    We have lots of utility classes which are DataObjectintensive. Can
    someone suggest a better way to migrate this kind of code.
    Thanks
    Namburi
    [email protected]
    [email protected]
    [Non-text portions of this message have been removed]
    [email protected]
    [email protected]

  • Portal Theme - Portal Theme Editor - What about the WD4A Applications

    Hello,
    Question is :
    i copied a standard theme : SAP_TRADESHOW to make a custom theme. I used the portal theme editor in the portal.
    i changed the colors and the pics.. The Screens of the portal is like i changed it.
    But my problem is, when i open a WD4A Application which is included in the portal, for example "Travel Management" it is showen in the standard sap_tradeshow colors.
    I also checked the versions of the backend themes in the mime, but the version of the theme in der portal i used is younger than the backend theme.
    Is it necessary, that to make a backend theme with the colors of the changed portal theme, and contain the URL of the mime in the theme_root parameter of the WD4A Applications?
    What kind of options do i have ??
    Can anyone help me ??
    greeting
    dominic

    I have found it already.... The structure of the themes can be located at the Portal server (file system) in path:
    \usr\sap\ep1\jc00\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\ irj\root\portalapps\com.sap.portal.themes.lafservice\themes\portal
    regards,
    Noel

  • In history i have given forget about the site. when i open firefox if i give a letter example:k means the website which i give forget is opening.so what can i do for this.

    for example when i give yahoo means if i give about that site after when i firefox if i gives y means the yahoo will starting appear.

    See comments 17,44,63,71:
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=627729 Bug 627729] - Hotmail web page continually reloads every second
    ''(please do not comment in bug reports; you can vote instead)''

  • Question about the "Windows and Arch Dual Boot" wiki

    I've been reading this wiki http://wiki.archlinux.org/index.php/Win … _Dual_Boot to get a better understanding of what I need to do to install Arch along side of my XP installation and there's one point that I don't understand. Here it is
    It is important to note that there is a 1024 cylinder limit with some older BIOSs. This means that the BIOS cannot access things beyond the 1024th cylinder (about 8.5GB), so the /boot partition should be in the first 8.5GB (space before Windows partition).
    How does one go about getting the /boot partition created during the installation of Arch to install in the first 8.5g? I have installed Arch in Virtualbox twice so far just so that I'm familiar with the procedure and I can't see anything in the installation where I can do this.
    There's one other item that is not clear to me as I've seen conflicting information on it. If I do create a seperate "/boot" partition for Arch, do I need to make it "bootable"during the installation? At this point I don't think that I do.
    My understanding of installing to be able to dual boot is that I only need to install Grub to "Sda" and of course edit the grub menu to add the information needed for XP. Is this enough?
    Thanks for any help.

    Yes, you install grub to sda (master boot record), and add the entry for Windows. In the step where you partition the harddrive, you can choose where to create it. Actually it may not be that much of a problem anymore, my boot is on the third partition, after ~15 GB. You can forget about the bootable flag when using grub, it does not care.

  • How do I sync themes I create in the app with the the Kuler website and other Adobe apps?

    To sync color themes created on your iphone, you need to sign in to the app.  You can do this by clicking the settings icon (in the top right corner).  Then click "Sign in".  You themes will now start syncing with the Kuler website and will also be accessible in other apps like Adobe Ideas and Illustrator CC.

    Yes, makes some sense, but the main doubt is: Adobe Ideas don't reconizes .ase files...the only way in which I could make it work was saving the theme created as an image file (jpeg in instance) and email me this file, opening in Ideas and "catching" the colors as I would do with any other image. There's a way somebody could import this themes into Ideas?
    The Kuler page says this:
    "The color themes you create with the Kuler app can be synced to the Kuler website, an online community for color enthusiasts, for use with other Adobe applications such as Illustrator and Adobe Ideas."
    How one can do this? Theres no option in kuler like "Open in" when you save a theme, and Ideas don't recognizes the .ase files generated, so this is the main doubt:
    How one can import or sync, whatever, a theme generated in Kuler (the app or the site) into Ideas?
    Thank you.

  • New ksplash theme - archlinux-modern

    I've put together a new ksplash theme for KDE 3.x which uses the newest official Arch Linux logo art:
    It's available here for now.  As soon as I can either get it hosted or figure out how to get my host to accept connections via makepkg/wget, I plan on submitting it to the AUR.  Please let me know if it's worth the effort.
    Until then, to use:
    1. Unpack the file - you'll get ./archlinux-modern-ksplash-1.0/archlinux-modern/ as a directory structure.
    2. As root, copy the ./archlinux-modern directory and its contents into /opt/kde/share/apps/ksplash/Themes and then exit the root session.
    3. Fire up the KDE Control Center, go to the Appearance & Themes section, and run the Splash Screen configuration module.
    4. Select archlinux-modern and hit Apply.
    Please enjoy, and thanks in advance for any feedback.

    It's now available on AUR:
    http://aur.archlinux.org/packages.php?ID=18653
    Please enjoy, and thanks again!

  • Question about the whitelist and installing a Wireless AC card on a Thinkpad Yoga

    Hi,
    So I'm looking at buying a Thinkpad Yoga, but the model I'm looking at doesn't have AC wireless.  I've read up a bit about FRUs and whitelists, and was just wondering if the same model wireless card with two different Lenovo parts numbers will be compatible with each other or if the bios will block it if I don't buy the specific Lenovo part number.

    Yes, you install grub to sda (master boot record), and add the entry for Windows. In the step where you partition the harddrive, you can choose where to create it. Actually it may not be that much of a problem anymore, my boot is on the third partition, after ~15 GB. You can forget about the bootable flag when using grub, it does not care.

  • I accidently hit "forget about this site" in my history, and it deleted all related sites to it. i desperately need to get them back. how do i retrieve the forgotten or deleted sites from history in firefox4 ?

    i use the firefox4, and when i went to my history, i right clicked to delete a certain site, and accidentally hit the last option; (forget about this site) which deleted all the similar sites to the one i clicked! i.e. if it were facebook site, all facebook sites were gone..
    '''how do i retrieve the sites i lost in history?'''

    Tony, thnx for the prompt response,,
    however, i didn't delete. i hit the below option which reads; "forget about this site" which is the last item in the list that appears when you right click any site in history.
    i was told there are open source programs that can retrieve it.
    '''how sure r u that they cannot be recovered?!'''

  • I use Firefox 'Most Visited' for easy access to the websites I use every day. I inadvertently clicked 'Forget About This Site' on a page that I need. That page is gone, apparently permanently, from my 'Most Visted' list. How can I get it back?

    I use Firefox 'Most Visited' to access websites I use many times every day. I inadvertently clicked 'Forget About This Site' on a page listing that I need. That page is gone, apparently permanently, from my 'Most Visited' list. No matter how many times I re-visit the page, it will not show up on 'Most Visited'. How can I get it back? Thanks!

    Most Visited is an automatically generated list that shows sites that you've visited.<br />
    If you delete the history of a site then you have with a visit count of zero.<br />
    To make that site reappear in that you you will have to visit that site often enough to make the visit count match the other sites in that list or clear the history from other sites in that list.
    You can make the Visit Count column visible in the History Manager to see how many times you've visit sites.
    *http://kb.mozillazine.org/Viewing_the_browsing_history_-_Firefox

  • I have a few failed downloads on my iPod that I have bought and paid for. I don't care about the money but I would like to know how to delete them? Is there a way I can do it on my iPod without using a computer?

    I have a few failed downloads in the 'downloads' section on iTunes. It won't let me download any other video and it keeps asking me to 'tap to retry' I don't really care about the money lost but can anyone tell me if I can delete them from my iPod? Thanks x

    Have you tried resetting your iPod:
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.

  • Dear Apple!  Sorry for bothering me buy an iphone 5 features of the familiar, I have a pc restore. they forget about icloud account ID and Pass now I want to activate the device without the aid small icloud account and password. lending rules company can

    Dear Apple!
    Sorry for bothering me buy an iphone 5 features of the familiar, I have a pc restore. they forget about icloud account ID and Pass now I want to activate the device without the aid small icloud account and password. lending rules company can help me to activate the serial number and IMEI states do not ask Thank you!

    Apple itself! I'm sorry to bother buying a used iphone 5, I have a pc restore. forget iCloud account ID and now I want to activate the device without iCloud account. Please ask apple can help me to reactivate this device does not need the drill and what? my device is iphone 5 ios 7. If possible please email: [email protected] Thank you very much

  • What is the difference between "Delete" & "Forget about this site" when deleting a single item in the 'History' as a 'customising' procedure ?'c'

    I am still using Firefox on Windows XP

    Using "Forget About This Site" will remove all data stored in Firefox from that domain like bookmarks, cookies, passwords, cache, history, and exceptions, so be cautious and if you have a password or other data from that domain that you do not want to lose then make sure to backup this data or make a note.
    You can't recover from this 'forget' unless you have a backup of the involved files.
    It doesn't have any lasting effect, so if you revisit such a 'forgotten' website then data from that website will be saved once again.

  • I mistakenly erased contact numbers in my iphone and itunes. if they can somehow find in Time mashine (she's always been on) or you can forget about them? operating system Lyon. restore contacts if possible, how to do it?

    I mistakenly erased contact numbers in my iphone and itunes. if they can somehow find in Time mashine (she's always been on) or you can forget about them? operating system Lyon. restore contacts if possible, how to do it?

    your contacts are in your time machine
    look around in these forums about time machine

  • How to use the ITS Theme generated by ITS Theme generator of Portal

    Hi,
    I have generated an ITS Theme using ITS Theme generator of Portal. I exported the theme . It is a zip file containg some xml files and two zip files - Portal and ITS. When I unzip ITS.ZIP I have webgui folder under which there is ma and sa.These folders have various images.
    Now how do I apply the generated theme.
    Regards,
    Harish

    Hi Edgar,
    Thanks for responding. Yeah I looked at that documentation earlier and these are the activities we have done so far:
    1. Using ITS theme generator in portal, generated ITS theme for our custom portal theme.
    2. Verified from theme export that ITS.zip contains all relevant images, stylehsteets etc for our custom theme.
    3. Even after this, when we preview transaction iViews from portal to execute a transaction on ECC system those iViews pick up default SAP theme but not our custom theme.
    4. After looking at the OSS notes mentioned in help documentation, we used ~webTransactionType, ~design & ~designBaseUrl parameters in iView properties but no luck. Actually these parameters get ignored - even if we put invalid host name in designBaseUrl it doesn't throw any error.
    We use EP 7.0 SP 17 and ECC 7.01 Ehp4 with integrated ITS. When we generated the theme using ITS theme generator in portal, we tried with service as webgui and also sap_generate but the iViews pick up only default SAP theme. How do we point ITS webgui and transaction iViews to custom portal theme?
    Thanks for your help!
    Veda

Maybe you are looking for

  • Adobe Acrobat X Pro update to 10.1.2 removes Print to Black & White option

    I used to be able to print a PDF to black and white (grayscale is of no use to me) right in the print dialog window, but once I updates, that feature was replaced with a note that says "Click the Properties button" to change the color setting using t

  • Mass Create Purchasing Conditions

    Hi guys I'm working on a development designed to copy the purchase price of a given material to a group of related materials (these will be held in a custom table). There are no suitable BAdIs in ME11 or MEK4 so I'm having to select new price records

  • Without any charger,Macbook Pro is slow

    My 13 Macbook Pro became slow during a power cut in the electricity. The speed goes back to normal only after I plug it to charge. I have tried: >Canceling "Put Hardrive to sleep when possible" in Energy Saver >Checking Activity Monitor;Nothing is sl

  • Randome error reported in Report

    Hello, While running a report in explorer,in selection criteria when i try to get valid entries by clicking on drop down list for any variable, I get the following error (randomly) "System error in program CL_RSR_WWW_RENDERER and form GET_VARDEF_FOR_

  • Downgrade Bios 5fcn95ww_p​ublic 64bit Z480 a cualquier version anterior para windows 7 64bits

    Después de instalar la última versión del BIOS " 5fcn95ww_public 64bit.exe " en mi IdeaPad Z480 Windows 7 Ultimate 64bits, la función caposd y las teclas Fn Numlock quedaron inutilizables, igualmente la administración de energía de la pantalla y de r