Rss:PubDate gives too much info to iWeb Blog RSS feed

Hi All!
Blog pages are setup in iWeb, and I've got an external "bot" that subscribes to the RSS feed from the blog. I'm grabbing the feed and stripping the {rss:pubDate}, {rss:title} and {rss:description} fields from the feed to re-format for posting in a discussion forum. (Note: no copyright issues here, as I write the blog, publish the feed, and host/admin/moderate the forum.)
I'm wondering if the {rss:PubDate} field can be stripped down to include less information in the feed? It seems the PubDate is derived from the date and time of the blog post that's feeding it. ie: I enter 12/28/1993 in the blog entry "Date" field... the RSS feed comes out with the date I entered, AND the time of day and GMT offset the post was created. I don't need the time of day and GMT offset in my forum post headlines... is there any way to put less information into the {rss:PubDate} field via the blog entry page in iWeb? I'd like my {rss:PubDate} field to read "12/28/1993" instead of "12/28/1993 04:23:57 -0800"
Ideas?
-Case

Bonjour
For RSS feed, iWeb only use the URL you write in the Site Publishings settings. Make sure that you've written http://thesnugglycactus.net/ and not https://thesnugglycactus.net/
But I don't really think that you wrote https, otherwise RSS feed would not be your only issue.

Similar Messages

  • Too much info to fit on DVD?

    Probably a stupid question, but when creating a project in FCE and then exporting to iDVD, how can I know when I am close to having too much "project" to fit on a DVD?
    In other words, I don't want to keep creating projects on my timeline if I have already (unknowingly) filled up the space available on the DVD. Is there a guage somewhere that can be used as a guideline? Especially since I will also have a short slideshow as part of the menu in iDVD.
    Thanks so much for any input you can muster!

    Dakine,
    What matters is the length (in time) of your video. As a general rule, you can put up to 2 hours of video on a single layer DVD. To the extent that you add templates, menus, slideshows, etc. to your DVD project they will decrease the space available for video on the same DVD.
    iDVD has meters that show your project duration and how much space is used & still available in your DVD project as you add menus & assets to your project. By the way, iDVD 7 has greatly enhanced reporting of space availability compared to iDVD 6 or earlier. FCE cannot tell you that information.
    In any case, if you have already added your slideshow to the DVD, you could estimate how many minutes of video might fit by multiplying the remaining space in GB by 25. So, for example, if you have already used 1.2 GB in your DVD project, 4.2GB - 1.2GB = 3.0 GB remaining available. Multiply that by 25 mins/GB, and you could fit about 75 min of video in the same DVD project. (Note: 4.2GB is the estimated capacity of a single-layer DVD for purposes of these calculations, as is 25 min/GB. Also, this is only for purposes of calculating remaining capacity in your DVD project - the size of the file you export from FCE has no bearing on these calculations; only the length in time is relevant.)

  • Web Gallery CS4 Journal with Slideshow giving too much info

    I have photos from a number of authors. There are also various functions for which I want a slide show for each. I would like the information on the left of the slide to give the Description (if present), and the person who took the photo.
    No matter how many items I uncheck in various metadata panels, I still get:
    Creation date
    Date file modified
    Camera make
    Camera model
    x resolution
    y resolutin
    resolution unit
    Image size
    Metering mode
    File source
    Focal length
    Max aperture value
    Flash fired
    I have unchecked any of these that I have found ANYWHERE in Bridge, but cannot get rid of them. This information is definitely not necessary on the website where they will be posted.
    Does anyone know how to get rid of these items. It is a real pain to try to remove them from the xml file when saved to disk (and there are a LOT of photos to process.
    I am using OSX 10.5.7 and supposedly Bridge is up to date.

    Hi there!
    I have found a much easier way to fix this, and you don't have to start over by building your web galleries in Photoshop. You just have to alter the code a little bit.
    By all means, create your way cool web galleries in Bridge, but look in the "resources" folder that Bridge creates when it makes a web gallery. Inside the "resources" folder you will find a file called "group.xml". Open it in Dreamweaver or whatever you use and view the code. Scroll down until you see <item>. The next lines will contain all that pesky information you want to delete. For example, you might see <title>filename.jpg<title>. Simply delete the file name so that you end up with <title><title>.
    That's it! Repeat for all the information you need to delete, or write in something better. Then hit F5 to refresh the code.
    Even an artist like me can do it. No geeky talents needed. Enjoy.
    CAartist

  • Incoming messages have way too much info

    When i get an email it gives me info such as: received, X-Originating-Ip, X-Authority-Analysis and other random info. Is there a setting where I can just have it show the basic information? Thank you.

    go to Mail menu->Preferences, click on Viewing tab and select default for "Show header details".

  • RMAN SCREEN TOO MUCH INFO

    Hi, anyone who gives to me the way to pause the screen as soon as you have a lot of info on that?
    EX. im running a report obsolete to know what backups are obsolete and delete them, but i have a lot of screens then i dont know information.
    another example, list backkupset summary.......i have a lot of backupsets, i want to review ther numbers by screen.
    I want to pause the screen like we do on linux | more or something like that.
    I hope somebody know about it and let me know the answer.
    my email is [email protected]

    You could use the LOG option on your command line or you could use SPOOL LOG once in RMAN.
    In addition, you can launch RMAN as:
    rman | tee rman.logor simply specify a range for the LIST command to cover. For example,
    list backupset summary completed before 'sysdate - 2';

  • Too much info

    Hi! I am getting too many answers printed- how do I get this to print the minimum number only once??
    public class Minimum {
      public static void main(String[] args) {
        // Initialize the list
        double[] myList = {1,2,4,5,10,100,2,-22};
        // Print the original list
        System.out.println("My list is: ");
        printList(myList);
        // Sort the list
        selectionSort(myList);
      /** The method for printing numbers */
      static void printList(double[] list) {
        for (int i = 0; i < list.length; i++)
          System.out.print(list[i] + "  ");
        System.out.println();
      /** The method for sorting the numbers */
      static void selectionSort(double[] list) {
        double currentMin;
        int currentMinIndex;
        for (int i = 0; i < list.length; i++) {
          // Find the smallest in the list[i..list.length-1]
          currentMin = list;
    currentMinIndex = i;
    for (int j = i + 1; j < list.length; j++) {
    if (currentMin > list[j]) {
    currentMin = list[j];
    currentMinIndex = j;
    // Swap list[i] with list[currentMinIndex] if necessary;
    if (currentMinIndex != i) {
    list[currentMinIndex] = list[i];
    list[i] = currentMin;
    //print the minimum number
    System.out.println("The minimum number is: " + list[0]);

    From the title I was expecting a tale of biological excess of some kind or other. Oh, well.if (currentMinIndex != i) {       
       list[currentMinIndex] = list;
    list[i] = currentMin; //print the minimum number
    System.out.println("The minimum number is: " + list[0]);
    }You're printing out a number each and every time you change the order; move the println statement to after the closing brace of the outer for loop.

  • Printer prints too much info on a page(hp photosmart 5520)

    I  just  tried to print a certain page  from  my banks account  and  i just  wanted  to print a certain  information  but there were  3  different section of  the page  all 3  on top of  another  so it printed everything  on top of  another. How  do i fix it  so i can just  print  the  1  area  and not  all 3  thanks  Len

    Hello ekra,
    Welcome to the HP Forums.
    I see that you are having an issue with the printer not printing any ink on the pages.
    I do have a few steps we can try in the attempt to troubleshoot this issue.
    First off, please make sure that you have the printer power cable connected directly to a wall outlet and not a power bar/strip. Here is a document that uses a LaserJet printer as an example but it is meant for HP products in general. Please click on the following link that explains the Issues when Connected to an Uninterruptible Power Supply/Power Strip/Surge Protector.
    I also have a great document that deals with when the Printer Prints a Blank Page or Does Not Print Black or Color Ink for the HP Photosmart Plus B209a, ....
    Please feel free to write me back if you have any other questions or concerns.
    Cheers,  
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • Console output - way too much info...

    when i debug my application i get loads of the following statements in the console output..
    [SWF] /blah/blah/blah.swf/[[DYNAMIC]]/1 - 172 bytes after decompression
    [SWF] /blah/blah/blah.swf/[[DYNAMIC]]/1 - 121 bytes after decompression
    [SWF] /blah/blah/blah.swf/[[DYNAMIC]]/1 - 172 bytes after decompression
    [SWF] /blah/blah/blah.swf/[[DYNAMIC]]/1 - 121 bytes after decompression
    I am using the flash builder beta 2 plug in with Zend Studio 7 and I have got swfs embedded in mx:image tags.
    Maybe it is an issue with Zend Studio and what it displays in the console...  Maybe it is a setting I don't know about in Flash Builder or it could be the embedded swfs... but if anyone can help i would really appreciate it..
    at the moment there are so many messages it is hard for me to locate my trace statements. blessings..

    still looking for an answer if anyone can help..?

  • Upgraded to iPhoto '11, info tray takes up too much space?

    Is there a way of resizing or moving the info tray from the side of screen to the bottom like '09 version?
    Mostly interested in minimal view to see date, size of photo taken. Screen size on 13.3" so info bar takes up too much space.

    No.  That feature is hard coded into the app.  Send a feature request to Apple via http://www.apple.com/feedback/iphoto.html.  The Command+i key combination can quickly open and close the Info tray to get it out of your way.
    OT

  • Info & mini guile (down arrow) takes up too much screen area

    Info & "mini guide" are overlayed on "opaque" box and take up almost half the height. That's not acceptable.
    In earlier version, they were overlayed transparently and took up small area.
    There's a lot of area wated at the bottom with no information. Either reduce area, mainly height it blocks or show full channel video in remaining uppper unblocked area in reduced size, as done in cases of full guide and channel guide.

    I agree. Too much inefficient waste of space that could be eliminated or filled with more useful content.

  • Why does my laptop give me a warning saying that firefox is using too much memory and to restart firefox to be more efficient? I just bought this laptop so I know it has the power to run what I need it to.

    Why does my laptop give me a warning saying that firefox is using too much memory and to restart firefox to be more efficient? I just bought this laptop so I know it has the power to run what I need it to.

    You appear to have AVG installed:
    *See --> http://forums.avg.com/ww-en/avg-forums?sec=thread&act=show&id=173969#post_173969
    From reading on the internet, it appears that when there is a spike in memory usage, AVG "interprets" that as a memory leak, possibly caused by malware. AVG could be incorrect concerning that assumption. Maybe they are being a bit too conservative about memory usage; just my opinion.
    The decision is yours to turn off the "advisor" or leave it on.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *'''''Adobe PDF Plug-In For Firefox and Netscape''''': [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *'''''Next Generation Java Plug-in for Mozilla browsers''''': [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Why is there way too much extra info attached to my photo cd, when I simply burnt only 6 pictures on it? This has been happening for months now.

    Why is there too much extra info attached to my photo cd, when I simply burnt only 6 pictures on it?
    This has been happening for several months now.
    It used to work correctly.
    For example:
    I burnt a photo file of 25 pictures from my iphoto collection.
    When I went to the store to print them, the computer indicated there were 155 photos on it.
    All were cropped versions of my 25 pictures.
    Weird.
    Then when I only burnt 6 pictures today onto a cd, I took the disc to a Print Shop.
    Sure enough, the disc had other data and files associated with photos on it.
    Yes, my 6 were on it, but the Print Shop had to spend extra time searching for them.
    What's uP?

    For what it's worth, you posted this in 2011, and here in 2014 I am still having this same issue. Over the last two days, I have had to unlock my apple account 8 times. I didn't get any new devices. I haven't initiated a password reset. I didn't forget my password. I set up two factor authentication and have been able to do the unlocking with the key and using a code sent to one of my devices. 
    That all works.
    It's this having to unlock my account every time I go to use any of my devices. And I have many: iMac, iPad, iPad2, iPad mini, iPhone 5s, iPod touch (daughter), and my old iPhone 4 being used as an ipod touch now.  They are all synced, and all was working just fine.
    I have initiated an incident with Apple (again) but I know they are just going to suggest I change my Apple ID. It's a simple one, and one that I am sure others think is theirs. I don't want to change it. I shouldn't have to. Apple should be able to tell me who is trying to use it, or at least from where.
    Thanks for listening,
    Melissa

  • Way  Too much for me!!!!! I'll go back to youtube,very easy and better info!etube. Better info and eaiser!!

    This website is way too much for the simple guy wanting to know a simple answer to a simple question about an iPad 2 or a iMac!!!!!

    No problem!  There are many people for whom videos are a much easier way to learn things than trying to read written instructions or explanations.  You should always use whatever works best for you.   If these is something youtube cannot help you with, feel free to come back and join the huge number of users in these forums.

  • Recording gives way too much distort

    Hello everybody!
    I'm trying to record my guitar on the comp by placing a mic (which is plugged into the mic-in) near the amp but the quality of the recording is horrible, it sounds way too much distorted. It used to sound ok on my old comp which had an onboard sound card (AC97).
    I don't know what to do.. any thoughts?

    I think you would get better results my plugging the guitar into a preamp and the line-level from the preamp into the Line-in of your soundcard. If you search the forum for "guitar," you'll find lots of posts. This thread seems to cover using a SoundBlaster for guitar recording well, especially jutapa's posts.

  • Too much time to mount Data file in Time capsule then error 8085

    its taking too much time to open the folder and some times it gives this error code -8085 .. any idea ?
    Regards

    Use ethernet and see if you can delete the folders.. as long as you have them stored elsewhere.
    The TC is not a NAS.. it is not designed as a file store.. even attempting to use it that way can lead to issues.
    Read the info from our main guru.. Pondini. On why you don't do this. And ways around it.
    Q3 here. http://pondini.org/TM/Time_Capsule.html

Maybe you are looking for

  • Is it possible to put an iMac G5 screen into a intel iMac of the same size?

    my white 17" intel imac screen is about 60% covered with the vertical line problem, ive tried openeing it and blowing air through it, in hopes it was just some crazy dust accumulation, and smc fan control, but its getting worse by the week. i have a

  • Flash Problems. Update unrecognized by computer

    Hi, originally it was a Safari problem, but now a program I purchased called BannerZestPro, refuses to launch as it says my flash player is too old. I have run the latest install numerous times, trashed the internet plugin file (new one each time say

  • Function Modul for generate hashcode

    Hi all i search a function modul for generate a hashcode. Does it existing a function modul for that? Regards

  • "IS REQUESTED" keyword

    Hi all,       We are upgrading our ECC system from 4.6 to 6.0.       In one of the Function module we get a syntax warning :"Obsolete statement found IS REQUESTED not permitted" for line   CHECK ABC IS REQUESTED. Here ABC is TABLES parameter defined

  • Add a real HSS connection to BEA sip server 3.1

    Hi, I have a real HSS configed alrdy and wanna make the sip server can connect to that HSS? How do i do it?