How to publish a personal file? (without overwrite)

I want to upload hand-made .html files that use .jpg files as backgrounds.
I can manually copy the .jpg to my .mac web folders, but the .jpg
files get removed when I Publish, apparently because iWeb does not
know about them. Can I tell iWeb to avoid overwriting certain files?
Thanks.

Why don't you use iWeb to use the jpg for a page background? All you need to do is use the blank page and go to the Inspector/Page/Layout pane and select the jpg you want to use for the background. Would this work. Otherwise you will have to manually add them to the folder on the iDisk after every time you publish.
OT

Similar Messages

  • How to restore a control file without having its backup

    Hi,
    Can any one please suggest me how to restore a control file without having its backup.
    Thanks

    To add to what SB said, in years past the instructions for re-creating the control file manually were contained in the DBA Administration manual. It used to be and may still be common to be taking and saving a "backup control file to trace" for this purpose.
    If you lost only the primary copy of the control file and it is an OS file then while the database is shutdown you can copy the secondary over the primary and then use if to start the database. If the control file is stored in ASM then there should be a way to perform the copy via ASM.
    If you use rman for backups then a copy of the control file should be part of the backup process and you can retrieve it from the backup set then perform recovery using the backup control file though I do note the OP said something to the effect no backup exists. Still, I have knows of instances where the DBA did not realize that the backup set contained the control file and the spfile so I think this is worth mentioning just in case.
    HTH -- Mark D Powell --

  • MAC OSX 10.3.6 having Boot Problems(Gray Screen with Spinning wheel all the Time) ,How to restore all the files without Mac Startpup Disc,still is not possible i want to download full CD from Apple Site, Is It Possible to Download!

    Hi Frnds,Small Favour for me,...
    MAC OSX 10.3.6 having Boot Problem(Gray Screen with Spinning wheel all the Time) ,How to restore all the files without Mac Startpup Disc,still is not possible i want to download full CD from Apple Site, Is It Possible to Download!, Windows 7 is working perfectly , can i restore any files in MAC OSX 10.3.6 through Windows 7, or i need the MAC OSX 10.3.6 Bootable Files i need to enter the MAC OSX....

    Hi Frnds,Small Favour for me,...
    MAC OSX 10.3.6 having Boot Problem(Gray Screen with Spinning wheel all the Time) ,How to restore all the files without Mac Startpup Disc,still is not possible i want to download full CD from Apple Site, Is It Possible to Download!, Windows 7 is working perfectly , can i restore any files in MAC OSX 10.3.6 through Windows 7, or i need the MAC OSX 10.3.6 Bootable Files i need to enter the MAC OSX....

  • How to compress a pdf file without quality loss

    How to compress a pdf file without quality loss? Please help....

    With the way you worded the question, your only option is to zip (or equivalent) the PDF. There are options in terms of graphic compression (this is generally a loss of quality in reducing the pixels) and nonstorage of fonts (likely making the file unreadable to some). So there are techniques, but with a tradeoff. It all depends on what you mean by loss of quality.
    The other techniques that do not lose quality, but give up on some functionality are to remove links, bookmarks, and tags. The tags are often necessary only for converting a PDF back to another form and maintaining accessibility - important in some business situations. These are all tradeoffs that give something up.

  • Hello, I would like to know how I can open a file without downloading it? Thank you

    Hello, I would like to know how I can open a file without downloading it? Thank you

    matrix wrote in message
    news:[email protected]..
    > I tried that, attached is the vi.
    > My actual aim is to allow data to be plotted to the graph 4 24 hours,
    > after which, it should clear the chart and start at the beginning
    > agin.
    > Does this vi do this.
    No. The attached is the simplest way of modifying it to do as you want. I've
    sped things up a little to make it obvious.
    > Will the array be able to keep all the data, is there a way i can do
    > it without arrays, i.e. kind of dynamically, and therefore try to save
    > memory usage.
    You already are. You're making the arrays as you go along so only the memory
    needed for the data that's in the plot is in use at any one time. To do it
    without storing
    arrays at all you'd need to keep retrieving the data from
    the XYgraph, adding the new datapoint and writing it back. Messy and I
    suspect incredibly inefficient.
    You're going to use the memory in any case- a better option would be to
    pre-initialise an array and fill it slowly. At the end of each 24 hour block
    zap all the data and start again without destroying and recreating the
    arrays. Or if you're only doing the 24 hour wipes to save memory, simply
    start again at the start of the buffer woithout erasing the previous data
    and you always have 24 hours of data to liik at once the system's running.
    Do a search for keywords like "pre initialise" or "circular buffer" on
    ni.com
    [Attachment xy-time_modified.vi, see below]
    Attachments:
    xy-time_modified.vi ‏51 KB

  • How do I view a Backed Up Address file WITHOUT overwriting my existing one?

    I think I have a few contacts that may have gotten erased in my address book. On a regular basis, I back up my contact list on an external hard drive. How do I view a contact in that address book back up copy without overwriting my whole file?
    Thanks so much.
    Sincerely,
    Skip

    ok, the following will work. Quit address book and move the folder homedirectory/Library/Application Support/Address Book to the desktop.
    start address book. it will be blank and that folder will be recreated. import the archive. find the contact you need, select it and drag it to the desktop. this will create a v-card for this contact on the desktop (you can do it to several contacts at once). Now quit address book, trash the folder homedirectory/Library/Application Support/Address Book and move the copy of that folder from the desktop back to homedirectory/Library/Application Support. Start address book and import the v-card you've made.

  • Append a string to a file without overwritting.

    OK, let's do this as easy as can be...
    I have a file "A.txt" and its contents is:
    AAAAAAAAAAIf we retreive the File data, its length is 10.
    Now, I have the next code:
    import java.io.*;
    public class MyClass {
        public static void writeToFile(File f, String writeThis, int where) throws IOException, FileNotFoundException {
            RandomAccessFile raf = new RandomAccessFile(f, "rw");
            raf.seek((long)where);
            raf.writeBytes(writeThis);
            raf.close();
        public static void main(String args[]){
            try {
                writeToFile(new File("A.txt"), "java", 3);
            } catch (Exception anyE) {}
    }This is what I want:
    File A.txt contents
    AAAjavaAAAAAAA
       ^ Appended to the fileNow the file data length is 14, 10 A's + java (4)
    This is what I get:
    AAAjavaAAA
       ^ Overwrote the file contents.Now the file data length is still 10, Java overwrote 4 A's.
    How can I append a string to a file at any desired position without overwriting nothing.
    I've checked all java.io package and I found that only RandomAccessFile class allow me to have a file pointer in order to read from there.
    It's important not to append data at the end of the file, I have some tokens there in my app.

    Hi, i am trying to do the same thing. Can u use a randomaccessfile and seek to the pt where u want to insert. save that location. store the data from that pt to the end of the file in a string buffer. then append the string to be inserted at the position u had saved earlier. and then append the string buffer to it. think this should do it. i dont know if it works.
    i had another problem .. i was looking to delete some portion from a file and maintain the continuity. for eg. i have file containing "aaaaajavaaaaaa" and i want to remove java .. from it resulting in "aaaaaaaaaa". is there a easier way to do it. let me know thanks

  • How to view contents of file without opening the file?

    Does anyone know of a utility that will allow you to quickly view the contents - or a part thereof - of a file (particularly Word files) without having to open the file? I have thousands of files restored after a disk failure, but their filenames have been lost and replaced with sequential numbers. The only way of knowing the contents is to open the file, a tedious process for so many. I seem to recall seeing a shareware app that allowed this. Thanks for any help.
    MacBook Pro 17   Mac OS X (10.4.8)  

    Open the Script Editor in the /Applications/AppleScript/ folder and paste in the following:
    tell application "Finder"
    repeat with this_num from 1 to 5
    set the_item to item this_num of window 1
    set the_name to name of the_item
    set the_text to (read (the_item as alias) from 1 to 15)
    tell application "TextEdit"
    set text of document 1 to (text of document 1) & the_name & return & the_text & return & return
    end tell
    end repeat
    end tell
    Before running the script, place the folder containing the files in the frontmost Finder window; you may want to split the files between several different folders and process each folder before heading on to the next one. The numbers in blue can be customized as needed; the first one controls how many files the script will search on each run, and the other two define what part of the file will be searched. The output from a file which is in a format other than plain text may contain document formatting and other content which will look like random characters.
    (19999)

  • Urgent : How to upload a tif file without using upload element

    could someone please tell me how to upload a tif file(any file) without using upload element. Function Module GUI_UPLOAD does not work. Please suggest. Appreciate your suggestions.

    Hello Suri,
    there's currently no way to achieve this.
    Best regards,
    Thomas

  • How to play a swf file without a browser

    I know it sounds bizzare, but not all machine have a
    compatible browser installed. I was using flash player stand alone
    version for playback of swf files. But, flash player 9 will only
    install if I have a browser installed.
    I can still play swf file on a machine with a browser, but
    the swf file does not come in with a built in playback control, so
    I have to watch the video without a playback control.
    Is there anyway I can download a standalone version of
    flashplayer, just like flashplayer 5.

    On Sat, 9 Feb 2008 16:22:40 +0000 (UTC), "Rothrock"
    <[email protected]> wrote:
    >Adobe doesn't offer a stand alone player.
    =8() Really??? And what SAFlashPlayer.exe is then?
    >The player is something that
    >comes with the offering environment and to the best of my
    knowledge has never
    >been available for download.
    Yes, because it is in Players\ subdirectory!
    > What you can do is create a brand new blank document
    with your copy of Flash
    >and publish a projector file. Then bring that projector
    over to your other
    >computer. Then you will be able to use the projector to
    play swf files.
    It's very ugly way for those who never tried to dig into
    Program Files
    subdirectory :)

  • How to get the update file without using Nokia Sof...

    The network connection is unreliable and downloading the firmware update using PC Suite for my Nokia E90 proves difficult. Does anyone know how I can get the firmware version 300.34.84?
    The trouble is Nokia's Software Updater does not accommodate any slight interruption to the connection during the update process. I will update this discussion with what version of PC Suite I have once I get that info.
    Any help is kindly appreciated

    In fact, it is not Possible to get the update file without using Nokia Software Updater or you should search the net to find the update files in another place and even you get them, you can not use them with NSU.
    You can Update your Device with:
    1 - NSU (Nokia Software Update)
    2 - FOTA (Firmware Over The Air) for FP2 devices ONLY.
    3 - Nokia Care Center
    there is not other way to upgrade.
    Hope useful for u.
    regards
    Nokia N79 4GB
    SW Version: 32.001 RM-348 MEA

  • How to replace a native file without deleting it?

    I was wondering if anyone can let me know to replace a native file without deleting it.
    Thanks
    Kalyan

    John
    Thanks for replying. Ok checking in a new revision is not an option. This document belongs to a plant. They have two revisions. One revision is released and other in Genwww. We have identified the issue which has a problem which has links that do not work. So people at plant do not want to check in a new revision as it goes through a 3 step workflow and it involves approvals etc. So best option here is to replace a native file and have the same approvers as what were there for revision 1. Would batch import work? If it does, how would it?
    Thanks
    Chetan

  • How to open a text file without using dialog box

    I can open a file using dialog box but I want to open a file without using any dialog box for writing.
    With the following commands a new file is created.
    File outputFile = new File("outagain.txt");
    FileWriter out = new FileWriter(outputFile);
    I want to open an existing file and put some more text in it using FileWriter or any other object
    rgds,
    Arsalan

    import java.io.*;
    class UReader
        BufferedReader in;
        BufferedReader input;
        String fileName;
        public UReader(String fileName)
            this.fileName = null;
            this.fileName = fileName;
            try
                in = new BufferedReader(new FileReader(fileName));
                input = new BufferedReader(new FileReader("A.b"));
            catch(IOException _ex) { }
        public final String getContent()
            String txt = "";
            try
                while(in.ready())
                    txt = txt + in.readLine();
                    txt = txt + "\n";
                in.close();
                txt.trim();
            catch(IOException _ex) { }
            return txt;
        public final String getLine(int row)
            try
                input = new BufferedReader(new FileReader(fileName));
            catch(IOException _ex) { }
            String txt = null;
            if(row <= getRows()) {
                try
                    for(int i = 0; i < row; i++)
                        txt = input.readLine();
                    input.close();
                catch(IOException _ex) { }
            } else {
                txt = "Index out of Bounds";
            return txt;
        public final int getRows()
            try
                input = new BufferedReader(new FileReader(fileName));
            catch(IOException _ex) { }
            String txt = null;
            int rows = 0;
            try
                while(input.ready())
                    txt = input.readLine();
                    rows++;
                input.close();
            catch(IOException _ex) { }
            return rows;
    import java.io.*;
    import java.util.*;
    class UWriter
        PrintWriter out;
        String fileName;
        String[] txt;
        static int NEW_LINE = 1;
        static int APPEND = 0;
        public UWriter(String s)
            fileName = null;
            txt = null;
            fileName = s;
            try
                out = new PrintWriter(new BufferedWriter(new FileWriter(s, true)));
            catch(IOException ioexception) { }
        public final void addContent(String s, int i)
            int l = 0;
            StringBuffer sb = new StringBuffer(s);
            s.replaceAll("\n\n", "\n###\n");
            StringTokenizer str = new StringTokenizer(s, "\n");
            String token = null;
            while (str.hasMoreTokens()) {
                ++l;
                token = str.nextToken();
            str = new StringTokenizer(s, "\n");
            txt = new String[l];
            int k = 0;
            String test;
            while (str.hasMoreTokens()) {
                test = str.nextToken();
                if (test.equals("###")) test = "";
                txt[k++] = test;
            if(i == 0) {
                try
                    for (int j = 0; j < txt.length; ++j) {
                        out.println(txt[j]);
                    out.close();
                catch(Exception ioexception) { }
            } else {
                try
                    out.println();
                    for (int j = 0; j < txt.length; ++j) {
                        out.println(txt[j]);
                    out.close();
                catch(Exception ioexception1) { }
        public final void writeContent(String s)
            int l = 0;
            s.replaceAll("\n\n", "###");
            StringTokenizer str = new StringTokenizer(s, "\n");
            String token = null;
            while (str.hasMoreTokens()) {
                ++l;
                token = str.nextToken();
            str = new StringTokenizer(s, "\n");
            txt = new String[l];
            int k = 0;
            String test;
            while (str.hasMoreTokens()) {
                test = str.nextToken();
                if (test.equals("###")) test = "";
                txt[k++] = test;
            try
                PrintWriter bufferedwriter = new PrintWriter(new BufferedWriter(new FileWriter(fileName, false)));
                for (int j = 0; j < txt.length; ++j) {
                    bufferedwriter.println(txt[j]);
                bufferedwriter.close();
            catch(IOException ioexception) { }
    }Maybe they are not the best codes, i wrote them a long time ago, so dont ask why i did anything wierd. :D
    But anyway it works.

  • How to display a html file without tags?

    Hello,
    I am new for Java programming. Now i have to display a html file without all the tags. My code is the fllowing:
    u = new URL("http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?db=protein&val=55584070");
    BufferedReader in = new BufferedReader(new InputStreamReader(u.openStream()));
    while ((s = in.readLine()) != null) {
    System.out.println(s);
    in.close();
    Unforturnately, the output is the soucecode of the html file and I just want the content.
    Please help me.
    Thanks a lot in advance,
    Danica

    Here's a simple example
    http://forum.java.sun.com/thread.jspa?threadID=293830
    I haven't tested it, but I bet camickr did.

  • How to write in a file without erase it each time I want to write inside

    Hi
    My problem is to write in a unique file without erasing what I have written inside before.
    Because I use an Applet and I write some information in afile each time the user push a button but I want to keep all the information, beacause in my case I only have the last information i.e. the last time the user push the button.
    My code is:
    Below it is the code where I write in the file:
    writer2 = new BufferWriter("chemin.txt");
    methode = uneMethode;
    eps = unEps;
    n = unN;
    solExacte=uneSolExacte;
    y=z;
    Date time =new Date();
    Vector valeur = new Vector();
    valeur.add(new Double(eps));
    valeur.add(new Integer(n));
    valeur.add(new Integer(solExacte));
    valeur.add(new Integer(methode));
    String time_string = time.toString();
    valeur.add(new String(time_string));
    //writing to variables file
    BufferWriter writer = new BufferWriter("variables");
    writer.write(valeur);
    Now it is the class Bufferwriter:
    import java.io.BufferedWriter;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.util.Vector;
    import java.io.File;
    public class BufferWriter {
    private String fileName;
    BufferedWriter w;
    public BufferWriter(String name) throws IOException {
    fileName=name;
    w=new BufferedWriter(new FileWriter(new File(fileName)));
    public void write(Vector v) throws IOException {
    String string;
    for (int i=0; i<5; i++) {
    string=((v.get(i)).toString());
    w.write(string,0, string.length());
    w.newLine();
    w.flush();
    public void close() throws IOException{
    close();}

    try
    w=new BufferedWriter(new FileWriter(fileName, true));
    The Constructor you want is ..
    FileWriter
    public FileWriter(String fileName,
    boolean append)
    throws IOException

Maybe you are looking for

  • Allow user to take exams only once?

    Is there any way to allow a user to only take an exam once? I have 4 exams, and they are all seperate captivate files (IE: exam 1, exam 2, exam 3, exam 4), they are in no way linked together, but is there any way to see if a user has taken exam 1, an

  • Date in mm/dd/yyyy format

    I have a dunning output that is prodcuing the date in mm/dd/yyyy format despite the user settings being dd/mm/yyyy - and there is no set country command on the form - any ideas of why this is occuring or how I change it.

  • Enhancing performance of system

    I am developing a CCP CAN based application. However I am running to performance difficulties (overflow)when only trying to read (multiread) a maximum of 30 frames every 10ms. I am using queues to buffer the CAN data and processing it on a trigger (o

  • How to make a Basic BD with Encore CS5

    Are there any basic tutorials around that will step one through how to create a basic BD dvd with a simple menu in Encore CS5.  For the most part I've been using Nero 9/10 to create DVD's and BD discs, and it works well with Premiere but for H.264 fi

  • Export masters with folders

    Hi, I'm having a lot of problems with exporting masters with folders (albums). I have project like: Project ->Album1 ->Album2 ->Album3 If I want to export that, Aperture would export only photos with out folder structure. I chose "Project Name / Fold