Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for changefreq (0.48 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         * @return the change frequency
         */
        public String getChangefreq() {
            return changefreq;
        }
    
        /**
         * Sets the change frequency of this sitemap entry.
         * @param changefreq the change frequency to set
         */
        public void setChangefreq(final String changefreq) {
            this.changefreq = changefreq;
        }
    
        /**
         * Returns the priority of this sitemap entry.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  2. fess-crawler/src/test/resources/sitemaps/sitemap1.xml

          <lastmod>2005-01-01</lastmod>
          <changefreq>monthly</changefreq>
          <priority>0.8</priority>
       </url>
       <url>
          <loc>http://www.example.com/catalog?item=12&amp;desc=vacation_hawaii</loc>
          <changefreq>weekly</changefreq>
       </url>
       <url>
          <loc>http://www.example.com/catalog?item=73&amp;desc=vacation_new_zealand</loc>
          <lastmod>2004-12-23</lastmod>
          <changefreq>weekly</changefreq>
       </url>
       <url>
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 915 bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

         */
        protected static class XmlSitemapsHandler extends DefaultHandler {
    
            private static final String PRIORITY_ELEMENT = "priority";
    
            private static final String CHANGEFREQ_ELEMENT = "changefreq";
    
            private static final String LASTMOD_ELEMENT = "lastmod";
    
            private static final String LOC_ELEMENT = "loc";
    
            private static final String URL_ELEMENT = "url";
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 14.7K bytes
    - Viewed (0)
Back to top