Android Open Source - Sparse-RSS Strings






From Project

Back to project page Sparse-RSS.

License

The source code is released under:

Sparse rss Copyright (c) 2010-2012 Stefan Handschuh Translators - Dutch: Eelko Berkenpies - Spanish: Sergio Mart?n - French: <unnamed> - Turkish: <unnamed> - Russian: Igor Nedoboy Code-Contri...

If you think the Android project Sparse-RSS listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/**
 * Sparse rss//from  ww w .j  av a  2s. c om
 * 
 * Copyright (c) 2010-2012 Stefan Handschuh
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 */

package de.shandschuh.sparserss;

import de.shandschuh.sparserss.provider.FeedData;

public final class Strings {

  public static final String FEED_SETTINGS_OTHER_ALERT_RINGTONE = "other_alertringtone";
  
  public static final String FEED_SETTINGS_ALERT_RINGTONE = "alertringtone";
  
  public static final String FEED_SETTINGS_SKIP_ALERT = "skipalert";

  public static final String PACKAGE = "de.shandschuh.sparserss";
  
  public static final String SETTINGS_REFRESHINTERVAL = "refresh.interval";
  
  public static final String SETTINGS_NOTIFICATIONSENABLED = "notifications.enabled";
  
  public static final String SETTINGS_REFRESHENABLED = "refresh.enabled";
  
  public static final String SETTINGS_REFRESHONPENENABLED = "refreshonopen.enabled";
  
  public static final String SETTINGS_NOTIFICATIONSRINGTONE = "notifications.ringtone";
  
  public static final String SETTINGS_NOTIFICATIONSVIBRATE = "notifications.vibrate";
  
  public static final String SETTINGS_PRIORITIZE = "contentpresentation.prioritize";
  
  public static final String SETTINGS_SHOWTABS = "tabs.show";
  
  public static final String SETTINGS_FETCHPICTURES = "pictures.fetch";
  
  public static final String SETTINGS_PROXYENABLED = "proxy.enabled";
  
  public static final String SETTINGS_PROXYPORT = "proxy.port";
  
  public static final String SETTINGS_PROXYHOST = "proxy.host";
  
  public static final String SETTINGS_PROXYWIFIONLY = "proxy.wifionly";
  
  public static final String SETTINGS_PROXYTYPE = "proxy.type";
  
  public static final String SETTINGS_KEEPTIME = "keeptime";
  
  public static final String SETTINGS_BLACKTEXTONWHITE = "blacktextonwhite";
  
  public static final String SETTINGS_LIGHTTHEME = "lighttheme";
  
  public static final String SETTINGS_FONTSIZE = "fontsize";
  
  public static final String SETTINGS_STANDARDUSERAGENT = "standarduseragent";
  
  public static final String SETTINGS_DISABLEPICTURES = "pictures.disable";
  
  public static final String SETTINGS_HTTPHTTPSREDIRECTS = "httphttpsredirects";
  
  public static final String SETTINGS_OVERRIDEWIFIONLY = "overridewifionly";
  
  public static final String SETTINGS_GESTURESENABLED = "gestures.enabled";
  
  public static final String SETTINGS_ENCLOSUREWARNINGSENABLED = "enclosurewarnings.enabled";
  
  public static final String SETTINGS_EFFICIENTFEEDPARSING = "efficientfeedparsing";
  
  public static final String ACTION_REFRESHFEEDS = "de.shandschuh.sparserss.REFRESH";
  
  public static final String ACTION_UPDATEWIDGET = "de.shandschuh.sparserss.FEEDUPDATED";
  
  public static final String ACTION_RESTART = "de.shandschuh.sparserss.RESTART";
  
  public static final String FEEDID = "feedid";
  
  public static final String DB_ISNULL = " IS NULL";
  
  public static final String DB_DESC = " DESC";
  
  public static final String DB_ARG = "=?";
  
  public static final String DB_AND = " AND ";
  
  public static final String DB_EXCUDEFAVORITE = new StringBuilder(FeedData.EntryColumns.FAVORITE).append(Strings.DB_ISNULL).append(" OR ").append(FeedData.EntryColumns.FAVORITE).append("=0").toString();
  
  public static final String EMPTY = "";

  public static final String HTTP = "http://";
  
  public static final String HTTPS = "https://";
  
  public static final String _HTTP = "http";
  
  public static final String _HTTPS = "https";

  public static final String PROTOCOL_SEPARATOR = "://";

  public static final String FILE_FAVICON = "/favicon.ico";
  
  public static final String SPACE = " ";
  
  public static final String TWOSPACE = "  ";
  
  public static final String HTML_TAG_REGEX = "<(.|\n)*?>";
  
  public static final String FILEURL = "file://";
  
  public static final String IMAGEFILE_IDSEPARATOR = "__";
  
  public static final String IMAGEID_REPLACEMENT = "##ID##";

  public static final String DEFAULTPROXYPORT = "8080";

  public static final String URL_SPACE = "%20";

  public static final String HTML_SPAN_REGEX = "<[/]?[ ]?span(.|\n)*?>";
  
  public static final String HTML_IMG_REGEX = "<[/]?[ ]?img(.|\n)*?>";
  
  public static final String ONE = "1";

  public static final Object THREENEWLINES = "\n\n\n";

  public static final String PREFERENCE_LICENSEACCEPTED = "license.accepted";
  
  public static final String PREFERENCE_LASTSCHEDULEDREFRESH = "lastscheduledrefresh";
  
  public static final String HTML_LT = "&lt;";
  
  public static final String HTML_GT = "&gt;";
  
  public static final String LT = "<";
  
  public static final String GT = ">";

  protected static final String TRUE = "true";
  
  protected static final String FALSE = "false";
  
  public static final String READDATE_GREATERZERO = FeedData.EntryColumns.READDATE+">0";

  public static final String COUNT = "count";
  
  public static final String ENCLOSURE_SEPARATOR = "[@]";  // exactly three characters!
  
  public static final String QUESTIONMARKS = "'??'";

  public static final String HTML_QUOT = "&quot;";
  
  public static final String QUOT = "\"";
  
  public static final String HTML_APOSTROPHE = "&#39;";
  
  public static final String APOSTROPHE = "'";
  
  public static final String AMP = "&";
  
  public static final String AMP_SG = "&amp;";
  
  public static final String SLASH = "/";
  
  public static final String COMMASPACE = ", ";
  
  public static final String SCHEDULED = "scheduled";

}




Java Source Code List

de.shandschuh.sparserss.Animations.java
de.shandschuh.sparserss.ApplicationPreferencesActivity.java
de.shandschuh.sparserss.BASE64.java
de.shandschuh.sparserss.BootCompletedBroadcastReceiver.java
de.shandschuh.sparserss.CompatibilityHelper.java
de.shandschuh.sparserss.EmptyActivity.java
de.shandschuh.sparserss.EntriesListActivity.java
de.shandschuh.sparserss.EntriesListAdapter.java
de.shandschuh.sparserss.EntryActivity.java
de.shandschuh.sparserss.FeedConfigActivity.java
de.shandschuh.sparserss.FeedPrefsActivity.java
de.shandschuh.sparserss.MainTabActivity.java
de.shandschuh.sparserss.RSSOverviewListAdapter.java
de.shandschuh.sparserss.RSSOverview.java
de.shandschuh.sparserss.RefreshBroadcastReceiver.java
de.shandschuh.sparserss.SimpleTask.java
de.shandschuh.sparserss.Strings.java
de.shandschuh.sparserss.handler.PictureFilenameFilter.java
de.shandschuh.sparserss.handler.RSSHandler.java
de.shandschuh.sparserss.provider.FeedDataContentProvider.java
de.shandschuh.sparserss.provider.FeedData.java
de.shandschuh.sparserss.provider.OPML.java
de.shandschuh.sparserss.service.FetcherService.java
de.shandschuh.sparserss.service.RefreshService.java
de.shandschuh.sparserss.widget.ColorPickerDialogPreference.java
de.shandschuh.sparserss.widget.SparseRSSAppWidgetProvider.java
de.shandschuh.sparserss.widget.WidgetConfigActivity.java