Either Yes Or No

Hi guys, im thinking of implementing a simple ftp client midlet.im using a midp 2.0 compatible phone.do you think this can be done? as im not too familiar working with sftp.i use a client to upload my html files from home using an sftp client.I supply the host name user name and password along with the portnumber. Can you give me an overview of what the host is that the client connects to??How does an sftp client work??
thanks for your help

If SSH is anything like SSL/TLS (which im pretty sure it is) it uses PKI keys to negotiate a symetric key encrypted channel. But the protocol is completely different from SSL (and I don't think SSH uses X.509 certs).
You'd best find a Java library that handles SSH and use that in your application because writing your own SSH client is probably beyond your means.

Similar Messages

  • DVWP XSLT count number of column having Yes/No values for each row

    I have a Data View Web Part .Now I have a column that contains either 'Yes' or 'No'
    and i want to count the number of 'Yes' for the rows and column  .
    below image will help to understand better what i am tying to achieve.  

    Here is XSLT code , you may find this usefull
    Row View Template :
    <xsl:template name="dvt_1.rowview">
          <xsl:param name="Rows"/>
          <xsl:variable name="CountYesForAll" select="number((. = contains(@Richard,'Yes')))
           +number((. = contains(@AndrewP,'Yes')))
           +number((. = contains(@Damien,'Yes')))
           +number((. = contains(@AndrewC,'Yes')))
           +number((. = contains(@Tiffany,'Yes')))
           +number((. = contains(@David,'Yes')))
           +number((. = contains(@Tony,'Yes')))
           +number((. = contains(@Saj,'Yes')))
           +number((. = contains(@Miguel,'Yes')))
           +number((. = contains(@Viv,'Yes')))
           +number((. = contains(@Paula,'Yes')))
           +number((. = contains(@Helen,'Yes')))
           +number((. = contains(@Matthew,'Yes')))"/>
          <xsl:variable name="RichardsCount" select="count($Rows[(@Richard)='Yes'])"></xsl:variable>
          <xsl:variable name="AndrewPsCount" select="count($Rows[(@AndrewP)='Yes'])"></xsl:variable>
          <xsl:variable name="DamiensCount" select="count($Rows[(@Damien)='Yes'])"></xsl:variable>
          <xsl:variable name="AndrewCsCount" select="count($Rows[(@AndrewC)='Yes'])"></xsl:variable>
          <xsl:variable name="TiffanysCount" select="count($Rows[(@Tiffany)='Yes'])"></xsl:variable>
          <xsl:variable name="DavidsCount" select="count($Rows[(@David)='Yes'])"></xsl:variable>
          <xsl:variable name="TonysCount" select="count($Rows[(@Tony)='Yes'])"></xsl:variable>
          <xsl:variable name="SajsCount" select="count($Rows[(@Saj)='Yes'])"></xsl:variable>
          <xsl:variable name="MiguelsCount" select="count($Rows[(@Miguel)='Yes'])"></xsl:variable>
          <xsl:variable name="VivsCount" select="count($Rows[(@Viv)='Yes'])"></xsl:variable>
          <xsl:variable name="PaulasCount" select="count($Rows[(@Paula)='Yes'])"></xsl:variable>
          <xsl:variable name="HelensCount" select="count($Rows[(@Helen)='Yes'])"></xsl:variable>
          <xsl:variable name="MatthewsCount" select="count($Rows[(@Matthew)='Yes'])"></xsl:variable>
      <tr>
       <xsl:if test="position() mod 2 = 1">
        <xsl:attribute name="class">ms-alternating</xsl:attribute>
       </xsl:if>
       <xsl:if test="$dvt_1_automode = '1'" ddwrt:cf_ignore="1">
        <td class="ms-vb" width="1%" nowrap="nowrap">
         <span ddwrt:amkeyfield="ID" ddwrt:amkeyvalue="ddwrt:EscapeDelims(string(@ID))" ddwrt:ammode="view"></span>
        </td>
       </xsl:if>
       <td class="ms-vb">
        <xsl:value-of select="@Title"/>
       </td>
       <td class="ms-vb">
        <xsl:attribute name="style">
         <xsl:if test="normalize-space(@Richard) = 'NA'">background-color: #000000;</xsl:if>
        </xsl:attribute>
        <xsl:value-of select="@Richard"/>
       </td>
       <td class="ms-vb">
        <xsl:attribute name="style">
         <xsl:if test="normalize-space(@AndrewP) = 'NA'">background-color: #000000;</xsl:if>
        </xsl:attribute>
        <xsl:value-of select="@AndrewP"/>
       </td>
       <td class="ms-vb">
        <xsl:attribute name="style">
         <xsl:if test="normalize-space(@Damien) = 'NA'">background-color: #000000;</xsl:if>
        </xsl:attribute>
        <xsl:value-of select="@Damien"/>
       </td>
       <td class="ms-vb">
        <xsl:attribute name="style">
         <xsl:if test="normalize-space(@AndrewC) = 'NA'">background-color: #000000;</xsl:if>
        </xsl:attribute>
        <xsl:value-of select="@AndrewC"/>
       </td>
       <td class="ms-vb">
        <xsl:attribute name="style">
         <xsl:if test="normalize-space(@Tiffany) = 'NA'">background-color: #000000;</xsl:if>
        </xsl:attribute>
        <xsl:value-of select="@Tiffany"/>
       </td>
       <td class="ms-vb">
        <xsl:attribute name="style">
         <xsl:if test="normalize-space(@David) = 'NA'">background-color: #000000;</xsl:if>
        </xsl:attribute>
        <xsl:value-of select="@David"/>
       </td>
       <td class="ms-vb">
        <xsl:attribute name="style">
         <xsl:if test="normalize-space(@Tony) = 'NA'">background-color: #000000;</xsl:if>
        </xsl:attribute>
        <xsl:value-of select="@Tony"/>
       </td>
       <td class="ms-vb">
        <xsl:attribute name="style">
         <xsl:if test="normalize-space(@Saj) = 'NA'">background-color: #000000;</xsl:if>
        </xsl:attribute>
        <xsl:value-of select="@Saj"/>
       </td>
       <td class="ms-vb">
        <xsl:attribute name="style">
         <xsl:if test="normalize-space(@Miguel) = 'NA'">background-color: #000000;</xsl:if>
        </xsl:attribute>
        <xsl:value-of select="@Miguel"/>
       </td>
       <td class="ms-vb">
        <xsl:attribute name="style">
         <xsl:if test="normalize-space(@Viv) = 'NA'">background-color: #000000;</xsl:if>
        </xsl:attribute>
        <xsl:value-of select="@Viv"/>
       </td>
       <td class="ms-vb">
        <xsl:attribute name="style">
         <xsl:if test="normalize-space(@Paula) = 'NA'">background-color: #000000;</xsl:if>
        </xsl:attribute>
        <xsl:value-of select="@Paula"/>
       </td>
       <td class="ms-vb">
        <xsl:attribute name="style">
         <xsl:if test="normalize-space(@Helen) = 'NA'">background-color: #000000;</xsl:if>
        </xsl:attribute>
        <xsl:value-of select="@Helen"/>
       </td>
       <td class="ms-vb">
        <xsl:attribute name="style">
         <xsl:if test="normalize-space(@Matthew) = 'NA'">background-color: #000000;</xsl:if>
        </xsl:attribute>
        <xsl:value-of select="@Matthew"/>
       </td>
       <td>
       <xsl:value-of select="$CountYesForAll"/>
       </td>
       <td>
        <xsl:if test="normalize-space(@Title) = 'Richard'">
         <xsl:value-of select="$CountYesForAll + $RichardsCount"/>
        </xsl:if>
        <xsl:if test="normalize-space(@Title) = 'Andrew P'">
         <xsl:value-of select="$CountYesForAll + $AndrewPsCount"/>
        </xsl:if>
        <xsl:if test="normalize-space(@Title) = 'Damien'">
         <xsl:value-of select="$CountYesForAll + $DamiensCount"/>
        </xsl:if>
        <xsl:if test="normalize-space(@Title) = 'Andrew C'">
         <xsl:value-of select="$CountYesForAll + $AndrewCsCount"/>
        </xsl:if>
        <xsl:if test="normalize-space(@Title) = 'Tiffany'">
         <xsl:value-of select="$CountYesForAll + $TiffanysCount"/>
        </xsl:if>
        <xsl:if test="normalize-space(@Title) = 'David'">
         <xsl:value-of select="$CountYesForAll + $DavidsCount"/>
        </xsl:if>
        <xsl:if test="normalize-space(@Title) = 'Tony'">
         <xsl:value-of select="$CountYesForAll + $TonysCount"/>
        </xsl:if>
        <xsl:if test="normalize-space(@Title) = 'Saj'">
         <xsl:value-of select="$CountYesForAll + $SajsCount"/>
        </xsl:if>
        <xsl:if test="normalize-space(@Title) = 'Miguel'">
         <xsl:value-of select="$CountYesForAll + $MiguelsCount"/>
        </xsl:if>
        <xsl:if test="normalize-space(@Title) = 'Viv'">
         <xsl:value-of select="$CountYesForAll + $VivsCount"/>
        </xsl:if>
        <xsl:if test="normalize-space(@Title) = 'Paula'">
         <xsl:value-of select="$CountYesForAll + $PaulasCount"/>
        </xsl:if>
        <xsl:if test="normalize-space(@Title) = 'Helen'">
         <xsl:value-of select="$CountYesForAll + $HelensCount"/>
        </xsl:if>
        <xsl:if test="normalize-space(@Title) = 'Matthew'">
         <xsl:value-of select="$CountYesForAll + $MatthewsCount"/>
        </xsl:if>
       </td>
      </tr>
     </xsl:template>
    Footer template to show sub total :
    <xsl:template name="dvt_1.footer">
      <xsl:param name="Rows" />
      <div class="bupareport">    
        <table border="0" width="100%" cellpadding="2" cellspacing="0">
       <tr>
        <td width="8%">Sub Total :</td>
        <td width="6%"> <xsl:value-of select="count($Rows[(@Richard)='Yes'])" /></td>
        <td width="6%"> <xsl:value-of select="count($Rows[(@AndrewP)='Yes'])" /></td>
        <td width="6%"> <xsl:value-of select="count($Rows[(@Damien)='Yes'])" /></td>
        <td width="6%"> <xsl:value-of select="count($Rows[(@AndrewC)='Yes'])" /></td>
        <td width="6%"> <xsl:value-of select="count($Rows[(@Tiffany)='Yes'])" /></td>
        <td width="6%"> <xsl:value-of select="count($Rows[(@David)='Yes'])" /></td>
        <td width="6%"> <xsl:value-of select="count($Rows[(@Tony)='Yes'])" /></td>
        <td width="6%"> <xsl:value-of select="count($Rows[(@Saj)='Yes'])" /></td>
        <td width="6%"> <xsl:value-of select="count($Rows[(@Miguel)='Yes'])" /></td>
        <td width="6%"> <xsl:value-of select="count($Rows[(@Viv)='Yes'])" /></td>
        <td width="6%"> <xsl:value-of select="count($Rows[(@Paula)='Yes'])" /></td>
        <td width="6%"> <xsl:value-of select="count($Rows[(@Helen)='Yes'])" /></td>
        <td width="6%"> <xsl:value-of select="count($Rows[(@Matthew)='Yes'])" /></td>
        <td width="6%"> </td>
        <td width="8%"> <xsl:value-of select="@AndrewP"> </xsl:value-of></td>
       </tr>
      </table>
      </div>
     </xsl:template>

  • Four yes, no type of questions in one slide

    What I like to do is to put four true-or-false (yes-or-no) type of questions in one slide if possible.
    I achieved this using yes, no widget (I cannot remember where I got it)
    But in this widget, I can just choose yes or no without any feedback.
    But someone frome the top asked me to add feedback on each question.
    Can we achieve this kind of functionality using advance action?
    If possible, I would like to make each question appear one at a time.
    For example, the first question appear. After users select either yes or no, then
    appropriate feedback appear with arrow buttow. If youers click on the arrow button,
    the second yes-or-no question will appear etc. I attached a picture to illustrate my point.
    What is the best practice to achieve this kind of activity? Any advice would be greatly appreciated.

    Lieve is right, whether you are deploying it for LMS or not is vital.
    Also if you like you can insert 8 transparent buttons for i.e. 2 for each section, under button properties if you like you can set Reporting to -- Include in Quiz, a button would by default have Hint, Success Failure caption, enable the one you like, also you can initiate an action to make rest appear once you click arrow.
    This might be a little longer route to achive it, but should work.
    Thanks,
    Anjaneai

  • Yes/No Calculated Field

    I am trying to create a calculated field with an output of either 'yes' or 'no' - the output field is called 'ATO Compliance'.
    In layman's terms this is the calculation I need:
    If there is a Date/Time entered in the 'DateApplied' field, then 'ATOCompliance' = Yes
    Else 'ATOCompliance' = No
    Can someone please help me with this calculation!?

    Hi,
    Use the following formula in the calculated column
    =IF(ISBLANK([DateApplied]),"No","Yes")
    Please mark it answered, if your problem resolved.

  • Noise filters-eliminating annoying Crow(yes the Birds!) sounds

    I took some footage in Sri Lanka (tiny Island South East Asia) - the problem is outdoors there are so many Crows! they are Everywhere,...like an Alfred Hitchcock movie! So a lot of these interviews I did have these annoy dull "Kaaw! Kaaw!" sounds continuously in the bits. Anyway to get rid of these sounds? Maybe a custom filter, or may be just a normal filter? I am only interested in the Primary Subject's (interviewee) voice so background sounds are not important to me either.

    Yes, I understand your concern. Just trying to offer a creative solution to the challenge you'll face, trying to remove the squawking of the crows.
    If none of your video from Sri Lanka contains crows flying about, (for context) it may be a challenge to effectively incorporate the idea. Since I don't know what you have for footage, I can only suggest possibilities.
    Any chance your footage shows a crow flying off behind the subject? If so, go outside and shoot a crow flying of in the sky and cut to that...again just setting up a reference to your viewer why they hear crows in the intv. If course, it'd be great if you had mountains and/or tropical flora in the background...
    If your budget warrants, maybe you can acquire some stock footage of crows pecking at food that Aid Refugees are clamoring for...
    K

  • Unable to change field from available text options in SM30?

    It is either yes or no. I cannot change to yes , it keeps going back to no when I save.
    Anysuggestions?
       Thanks.

    Hay!
    Could you plz explain the problem???
    Thanks!
    Sharat

  • One license for OSX and PC?

    Is there any way that I can purchase one license (with educational discount) and use it for BOTH my Mac and PC?
    Per the licensing: when I buy a copy I can install it on two PCs OR two Macs, but not one of each, correct? I personally think this is a bit ridiculous and refuse to buy two copies.
    Looking at the volume licensing, found at http://www.adobe.com/aboutadobe/volumelicensing/policies/?PID=2159997 it says..
    Cross-platform licensing
    Adobe Volume Licensing (AVL) customers receive product serial numbers for both Windows® and Mac OS as long as the product is available for both and the two platforms are the same version. Program members can choose to use either platform, as long as the total number of licenses being used does not exceed the number purchased."
    However, does that mean that I can use it on both, as long as they aren't running at the same time, or that I must choose to install one or the other?
    I am willing to buy the volume license (though a bit more expensive), but I absolutely refuse to buy two licenses.
    Is there any solution where I don't have to buy two licenses? (according to one site I can buy backup disks for each platform with a volume license, but I don't want to do that either)

    Yes, that particular language on multi-platform is explained here, and how that should work
    I don't think you have to buy backup discs unless you personally need them, although they're only $20 apiece anyway and not a bad idea to have

  • SSRS Report with mutli select values in parameters

    Hi All,
    I am creating a SSRS report and displaying the result in tablix. I want to make the report to filter by multi select values from the parameters.
    I have 3 parameters. For all the three parameters, I have set "Default  Values" and "Available Values". Also, modified my result dataset to get the values from parameters using "WHERE ID = @Parameter1" (example) and so
    on..
    3 Parameters types:   1. Yes or No       
    2. Date          3. Values with NULL in the DB
    Problems:
    1. When I am passing the default values "Yes" "No" - it is throwing errors because default values is passed as Yes "AND" No instead of "OR" condition. The value stored in the DB wil have either Yes or No but not both.
    2. When I am querying the date values, it is a DateTime field in the DB. But I have queried like SELECT CONVERT(DATE, EXE_DATE) AS DATE FROM table which is giving only date in SQL but in SSRS displaying date with time.
    3. When I pull the list of values for third Parameter from SQL, it has some NULL values. When I try to use it in SSRS, it is not displaying the NULL value as select option in the list of values
    Any suggestions for the above three problems for SSRS with multi select values as filter will be helpful.
    Maruthu | My Blog

    Hi Maruthi,
    Regarding the three things:
    1.) I believe your first parameter is mutliselect , please convert it to single select.
    Steps: 
    a.) Select the parameter, right click and go to parameter properties
                    b.) Under General Tab in DataType section remove the checkbox for Allow Multiple Value.
    2.) Instead of returning as the date please return string. For example : 
    SELECT CONVERT(VARCHAR, GETDATE(),101)
    Here is the list of conversion : http://www.sqlusa.com/bestpractices/datetimeconversion/
    3.) As such there is no concept of null in SSRS. (Its a relational concept) . We do have nothing , which means empty. In Order to use null please select the Allow null option in the DataType section of the Parameter, This will add an checkbox for null in
    the report preview. Its developer job to handle the null values in there query.
    Regards Harsh

  • Using a Mac for an on-line course that "requires" a PC?

    I want to take an on-line course from Gatlin Educational Services. They claim that I must use a PC for the software to be compatible. When I ask them about using a dual-processor iMac running windows they won't say either yes or no. Just that "some students" have had problems. In input out there? Thanks
    Melissa

    Melissa:
    If you have an Intel iMac as your profile indicates and have MS Windows installed then I would definitely try that online course out on WIndows. Once Windows is running on your Mac then your Mac will behave just like any other PC running windows and should run the same Windows based applications that any other PC would run in your iMac's class.
    I would try it out.
    Axel F.

  • How to disable a lead selected item in a radio button group ?

    Hi,
    I have a radio button group and there are entries to create radio buttons dynamically. means there is only one radio button group in the UI design and in runtime I will be having two radio buttons (For ex: Yes and No ) . Now If I want to disable either Yes or No radio button, I am unable to do so. because If I disable the radio button group it disables both.  So, I can have lead selected item for ex: Yes which I want to disable. I want to know specifically how this Yes button to be disabled by taking lead selected index item.
    Please help.
    Thanks
    Praveen

    Try setting the radio button value of the lead selected button to abap_false/space.

  • Autofill a radio button using other radio buttons

    I would like a question on my form "Q24 Decrease Smoke" (set of "Yes"/"No" radio buttons) to auto fill with a response of "No" if the user selects "Not at all" to 3 other questions (also sets of radio buttons).  If the user selects any other response to any of these 3 questions, I want the user to be able to manually select either "Yes" or "No". This is the code that I've tried, under the Mouse Up event of the "No" radio button option for Q24:
    var a = getField("Q20 Smoke Cig").value;
    var b = getField("Q22 Smoke other forms").value;
    var c = getField("Q23 chew/snuff").value;
    if(a=="Not at all" && b=="Not at all" && c=="Not at all") event.value = "On";
    I'm new to Javascript, so am not entirely sure I am on the right track or what might be wrong here. Any help would be greatly appreciated. Thanks!

    Have you tried to the set the value to to "No"?
    The "Mouse Up" action only works when there is a "Mouse Up" action for the field.
    I would look at using the script in the 'On Blur" action for the 3 fields with adjustments for the fields as needed for the field where the script is used.

  • Can you Change the Background Color of the Book from White.

    When I read in the dark my computer screen is so bright it hurts my eyes.  Is there a way to go to white letters on black or change the background to grey or another color when reading an epub book in ADE.  Some of the reader software I use has a night time option which has the black background and white letters and it is much better.  Thanks for your reply (either yes or no way!)

    Very interesting.   I didn't know that even existed   I haven't tried with a book yet but at least it is a good workaround.   As my eyesight fails it will help also!   Thanks -  Keith   ( I agree that it is lame that they don't have that feature in ADE!)

  • Is it possible to have a playlist on my ipod touch without the contents of the playlist appearing in the main library?

    I want to put lanuage learning files on my ipod touch, but don't want to listen to how to say "where is the bathroom?" in another language while playing through my main library.  Is it possible to just keep files on a playlist and not in the main library?

    No, but if you are in the habit of listening to your iPod in Shuffle mode, then set the language files to Skip when shuffling.
    To set Skip when shuffling, highlight the track in your iTunes Library and click on File/Get Info/Options>Skip when shuffling and then Sync the iPod to the Library.
    Note that if you select a single track, the Skip when shuffling is a tick-box. But if you select multiple items, the Skip when shuffling option becomes a drop-down menu where you choose either Yes or No. Even if that option says Yes, change it to No and back to Yes. This ensuures that all tracks you have highlighted are set to Yes.
    Another option is to create a separate Playlist that includes everything except the language files. This will require you to manually add any new songs each and every time you buy new songs.
    Alternatively;
    you could even create a Smart Playlist to automatically add all the new music but to exclude the language files. To do that, set the Genre of the language files to "Language" (or similar) and then:
    Make sure you are looking at your entire Music Library, not just one part of it or a Playlist.
    Click on File/New Smart Playlist
    In the line that appears, change "Artist" to Media Kind (from the drop-down menu)
    The next two boxes should now show is and Music. If not, change them so that they do.
    Click on the + box at the end of that line (this will add a new line)
    Change "Artist" to Genre (from the drop-down menu)
    Change "Contains" to is not (from the drop-down menu)
    In the last (empty) box, type in Language or whatever genre you have given to the language files. Make sure it is typed in exactly as it is in the files.
    Click OK
    Rename the Smart Playlist as you want.
    Sync the iPod with iTunes.
    Note that this Smart Playlist will automatically add any new music to it. You do not need to add new songs yourself!

  • How do I update items on a 2nd list based on data changes on the first list

    Hi everyone, let me start by saying I am still learning about Sharepoint - what it can or can't do etc. I am also not a developer by nature. So it may take me little while to understand. Thanks for your patience and help.
    I am currently working on Sharepoint 2007.
    I have a Booking form and an Inventory form.
    With the booking from I have a column where the user can select the inventory item to book e.g. BookedItem
    With the inventory form I have a Availability column. (i.e. It's a text column populated with either Yes or No)
    I've also got a view on the front page of my Sharepoint page showing users what is currently available for booking. This is just a filtered view of Inventory form. Basically it displays items where Availability = Yes.
    What I would like to do is have a workflow that automatically updates the Availability in the Inventory list when an item is booked in the Booking Form.
    E.g Item A is booked via the Booking Form. Item A's availability in the Inventory List should now the 'No'.
    Users should now no longer be able to see Item A as an available item on my Sharepoint page.
    I am struggle with linking the two lists and making the corresponding updates. I'd appreciate it someone could help me out.
    Thanks.

    Hi Anil
    Thanks for the reply. I've attempted the steps in the link as shown but if the issue I am getting is because I am running Sharepoint 2007 instead. The example that you've linked is based on Sharepoint 2010.
    Just to be clear I am following
    "3. Now add one action : "Set Variable"
        Variable Name : CarId & Type : Integer
        Assign with CurrentItem's CarName (which one is lookup column for Car Name)"
    I am unable to assign the new variable to the ItemName. Nor do I get the option of a lookup for integer like shown in the example link.

  • Script error when viewing CHM file

    I recieved this error message when attempting to view the page in a CHM file that contains a Captivate demo:
    The demo was imported to FrameMaker and the FrameMaker files are live links in RoboHelp to make the CHM. Captivate and FrameMaker files reside on network, and RH project is on local drive. I cannot get rid of the error message by selecting either yes or no, so I can't navigate any further in the CHM file.

    Check this link out for some possible solutions.
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

Maybe you are looking for

  • Initial Load of BUPA_MAIN  to GWA_01 does not work

    Hi all I have a question concerning the serverside groupware Integration and the initial Load of BUPA_MAIN. According to the groupware integration guide, I have to "Transfer Business Partner to Public Contact Directory". This is done with transaction

  • An error occurred when trying to access the service

    I'm asking myself why I purchased a one year subscription to Adobe Reader to convert PDF files to Doc files, when it NEVER WORKS and no one seems to be able to help me!!! I am on a Mac Book Pro with Yosemite (don't upgrade it slows your Mac badly) an

  • Back ground job work in MM

    CAN ANY BODY TELL ME WHAT IS A BACK GROUND JOB WORK IN MM pls explain it with good example tell me 1 or  2back ground job work relevent transactions good answer will be awarded kiran

  • Number in report column

    How can i add % sign in the report number column? like 12%,15% Thanks KP

  • Flash Galleries generate multiple image folders

    Can anyone explain why the Flash templates need to generate 3 image folders (Large, Medium, Small) in addition to the Thumbs? I'm pushing my disk space limit on my hosting server, and wonder if I really need to upload all these, as the combined size