# This is a global properties file for the LL4blojsom plugin # which includes properties that may be optionally set # # Note: all lines (like this) beginning with # are comments # and are 100% safe to be removed if you don't want them around # Please feel free to remove them # Note: these properties only work in the global # linklist.properties which should be placed in the # WEB-INF/ directory of your blojsom installation # # Global properties here affect all blogs # using the LL4blojsom plugin # base=net.icite.datastore.WTFBase # # "base" is the classname of the datastore to use # net.icite.datastore.WTFBase is the hard coded value # and so may remain commented out or be removed altogether # # future versions of LL4blojsom may support alternate datastores # default-filename=linklist.txt # # this is the default filename for linklist sources # the hard coded value for this is linklist.txt # so, you only need to set this property if # you want to use a different default value # # the default-filename is what is used if no other # linklist sources are indicated # # note: for each blog, LL4blojsom first checks if it has # linklist sources set in its own properties file, # and then it checks for a file named with the default # filename in the local blog directory # i.e., WEB-INF/blog/ where blog is the id (name) of the blog, # and then it checks for a global fallback file (see below), # and then, finally, it checks for a source with the default # file name in the global directory, i.e., WEB-INF/ fallback=glob1 glob1=ll_fallback.txt # fallback is a linklist source name, in this case # it is set to the value of glob1 # the glob1 property then indicates the location of # this linklist source file--valid locations are like: # # filename.txt (a file in the same directory as this one) # /path/filename.txt (absolute path to file) # filename.txt, iso-8859-1 (filename, with encoding) # /path/filename.txt, utf-8 (path-file, with encoding) # http://example.com/filename.txt (http URI) # ftp://example.com/filename.txt (ftp URI) # # this indicates a global fallback file to use # if an individual blog using LL4blojsom does not # have any of its own linklist sources # # if this property is not set, and a blog does not # have any linklist sources defined, LL4blojsom will check # for a global file named with the default filename # (see above) as a last resort # default-encoding=utf-8 # # this is the default character encoding that LL4blojsom # will use for properties files and linklist source files # # the hard coded value is utf-8, so you only need to set # this property if you want to use a different value # # note: the encoding may be indicated for each linklist # source file (e.g., like filename.txt, iso-8859-1) which # will override any value set here for linklist sources only # # note: currently, the global linklist.properties file # must be saved as utf-8, but this default encoding will # apply to all other LL4blojsom property files and any linklist # source files that do not have another encoding indicated # filewatch-timer=1 # the filewatch timer sets a value, in minutes, of how often # to check properties and linklist source files for changes # the hard coded default value is 1 (i.e., 1 minute), so you # need only set this value if you'd like to check less often # # note: as of v1.0, changes to this global properties file # require a restart of blojsom--to be fixed in future versions # # future versions will offer more options around this, but # checking for changes every minute works fine, and # if you know your linklist sources aren't changing much # you might set this value to 10 (minutes), or more