├── .buildpath ├── .dockerignore ├── .gitignore ├── .htaccess ├── .project ├── .sandstorm ├── Vagrantfile ├── app-graphics │ ├── tinytinyrss-128.png │ ├── tinytinyrss-150.png │ ├── tinytinyrss-24.png │ ├── tinytinyrss-256.png │ ├── tinytinyrss-300.png │ └── tinytinyrss-48.png ├── build.sh ├── description.md ├── global-setup.sh ├── launcher.sh ├── mysql │ ├── app │ │ ├── db.opt │ │ ├── ttrss_access_keys.frm │ │ ├── ttrss_access_keys.ibd │ │ ├── ttrss_archived_feeds.frm │ │ ├── ttrss_archived_feeds.ibd │ │ ├── ttrss_cat_counters_cache.frm │ │ ├── ttrss_cat_counters_cache.ibd │ │ ├── ttrss_counters_cache.frm │ │ ├── ttrss_counters_cache.ibd │ │ ├── ttrss_enclosures.frm │ │ ├── ttrss_enclosures.ibd │ │ ├── ttrss_entries.frm │ │ ├── ttrss_entries.ibd │ │ ├── ttrss_entry_comments.frm │ │ ├── ttrss_entry_comments.ibd │ │ ├── ttrss_error_log.frm │ │ ├── ttrss_error_log.ibd │ │ ├── ttrss_feed_categories.frm │ │ ├── ttrss_feed_categories.ibd │ │ ├── ttrss_feedbrowser_cache.frm │ │ ├── ttrss_feedbrowser_cache.ibd │ │ ├── ttrss_feeds.frm │ │ ├── ttrss_feeds.ibd │ │ ├── ttrss_filter_actions.frm │ │ ├── ttrss_filter_actions.ibd │ │ ├── ttrss_filter_types.frm │ │ ├── ttrss_filter_types.ibd │ │ ├── ttrss_filters2.frm │ │ ├── ttrss_filters2.ibd │ │ ├── ttrss_filters2_actions.frm │ │ ├── ttrss_filters2_actions.ibd │ │ ├── ttrss_filters2_rules.frm │ │ ├── ttrss_filters2_rules.ibd │ │ ├── ttrss_labels2.frm │ │ ├── ttrss_labels2.ibd │ │ ├── ttrss_linked_feeds.frm │ │ ├── ttrss_linked_feeds.ibd │ │ ├── ttrss_linked_instances.frm │ │ ├── ttrss_linked_instances.ibd │ │ ├── ttrss_plugin_storage.frm │ │ ├── ttrss_plugin_storage.ibd │ │ ├── ttrss_prefs.frm │ │ ├── ttrss_prefs.ibd │ │ ├── ttrss_prefs_sections.frm │ │ ├── ttrss_prefs_sections.ibd │ │ ├── ttrss_prefs_types.frm │ │ ├── ttrss_prefs_types.ibd │ │ ├── ttrss_sessions.frm │ │ ├── ttrss_sessions.ibd │ │ ├── ttrss_settings_profiles.frm │ │ ├── ttrss_settings_profiles.ibd │ │ ├── ttrss_tags.frm │ │ ├── ttrss_tags.ibd │ │ ├── ttrss_user_entries.frm │ │ ├── ttrss_user_entries.ibd │ │ ├── ttrss_user_labels2.frm │ │ ├── ttrss_user_labels2.ibd │ │ ├── ttrss_user_prefs.frm │ │ ├── ttrss_user_prefs.ibd │ │ ├── ttrss_users.frm │ │ ├── ttrss_users.ibd │ │ ├── ttrss_version.frm │ │ └── ttrss_version.ibd │ ├── ib_logfile0 │ ├── ib_logfile1 │ ├── ibdata1 │ ├── mysql │ │ ├── columns_priv.MYD │ │ ├── columns_priv.MYI │ │ ├── columns_priv.frm │ │ ├── db.MYD │ │ ├── db.MYI │ │ ├── db.frm │ │ ├── event.MYD │ │ ├── event.MYI │ │ ├── event.frm │ │ ├── func.MYD │ │ ├── func.MYI │ │ ├── func.frm │ │ ├── general_log.CSM │ │ ├── general_log.CSV │ │ ├── general_log.frm │ │ ├── help_category.MYD │ │ ├── help_category.MYI │ │ ├── help_category.frm │ │ ├── help_keyword.MYD │ │ ├── help_keyword.MYI │ │ ├── help_keyword.frm │ │ ├── help_relation.MYD │ │ ├── help_relation.MYI │ │ ├── help_relation.frm │ │ ├── help_topic.MYD │ │ ├── help_topic.MYI │ │ ├── help_topic.frm │ │ ├── host.MYD │ │ ├── host.MYI │ │ ├── host.frm │ │ ├── ndb_binlog_index.MYD │ │ ├── ndb_binlog_index.MYI │ │ ├── ndb_binlog_index.frm │ │ ├── plugin.MYD │ │ ├── plugin.MYI │ │ ├── plugin.frm │ │ ├── proc.MYD │ │ ├── proc.MYI │ │ ├── proc.frm │ │ ├── procs_priv.MYD │ │ ├── procs_priv.MYI │ │ ├── procs_priv.frm │ │ ├── proxies_priv.MYD │ │ ├── proxies_priv.MYI │ │ ├── proxies_priv.frm │ │ ├── servers.MYD │ │ ├── servers.MYI │ │ ├── servers.frm │ │ ├── slow_log.CSM │ │ ├── slow_log.CSV │ │ ├── slow_log.frm │ │ ├── tables_priv.MYD │ │ ├── tables_priv.MYI │ │ ├── tables_priv.frm │ │ ├── time_zone.MYD │ │ ├── time_zone.MYI │ │ ├── time_zone.frm │ │ ├── time_zone_leap_second.MYD │ │ ├── time_zone_leap_second.MYI │ │ ├── time_zone_leap_second.frm │ │ ├── time_zone_name.MYD │ │ ├── time_zone_name.MYI │ │ ├── time_zone_name.frm │ │ ├── time_zone_transition.MYD │ │ ├── time_zone_transition.MYI │ │ ├── time_zone_transition.frm │ │ ├── time_zone_transition_type.MYD │ │ ├── time_zone_transition_type.MYI │ │ ├── time_zone_transition_type.frm │ │ ├── user.MYD │ │ ├── user.MYI │ │ └── user.frm │ └── performance_schema │ │ ├── cond_instances.frm │ │ ├── db.opt │ │ ├── events_waits_current.frm │ │ ├── events_waits_history.frm │ │ ├── events_waits_history_long.frm │ │ ├── events_waits_summary_by_instance.frm │ │ ├── events_waits_summary_by_thread_by_event_name.frm │ │ ├── events_waits_summary_global_by_event_name.frm │ │ ├── file_instances.frm │ │ ├── file_summary_by_event_name.frm │ │ ├── file_summary_by_instance.frm │ │ ├── mutex_instances.frm │ │ ├── performance_timers.frm │ │ ├── rwlock_instances.frm │ │ ├── setup_consumers.frm │ │ ├── setup_instruments.frm │ │ ├── setup_timers.frm │ │ └── threads.frm ├── sandstorm-files.list ├── sandstorm-pkgdef.capnp ├── sandstorm-screenshot.png ├── setup.sh └── stack ├── LICENSE ├── README.md ├── api └── index.php ├── atom-to-html.xsl ├── backend.php ├── cache ├── .htaccess ├── export │ └── .empty ├── images │ └── .empty ├── js │ └── .empty ├── simplepie │ └── .empty └── upload │ └── .empty ├── classes ├── .htaccess ├── api.php ├── article.php ├── auth │ └── base.php ├── backend.php ├── db.php ├── db │ ├── mysql.php │ ├── mysqli.php │ ├── pdo.php │ ├── pgsql.php │ ├── prefs.php │ └── stmt.php ├── dbupdater.php ├── dlg.php ├── feedenclosure.php ├── feeditem.php ├── feeditem │ ├── atom.php │ ├── common.php │ └── rss.php ├── feedparser.php ├── feeds.php ├── handler.php ├── handler │ ├── protected.php │ └── public.php ├── iauthmodule.php ├── idb.php ├── ihandler.php ├── logger.php ├── logger │ ├── sql.php │ └── syslog.php ├── opml.php ├── plugin.php ├── pluginhandler.php ├── pluginhost.php ├── pref │ ├── feeds.php │ ├── filters.php │ ├── labels.php │ ├── mobile.php │ ├── prefs.php │ ├── system.php │ └── users.php ├── rpc.php └── ttrssmailer.php ├── config.php ├── config.php-dist ├── css ├── cdm.css ├── dijit.css ├── layout.css ├── prefs.css ├── tt-rss.css ├── utility.css └── zoom.css ├── errors.php ├── image.php ├── images ├── alert.png ├── archive.png ├── blank_icon.gif ├── collapse.png ├── cross.png ├── error.png ├── favicon-72px.png ├── favicon.png ├── feed.png ├── filter.png ├── folder.png ├── fresh.png ├── indicator_tiny.gif ├── indicator_white.gif ├── information.png ├── label.png ├── logo_small.png ├── logo_wide.png ├── mark_set.png ├── mark_unset.png ├── new_version.png ├── page_white_go.png ├── plugin.png ├── plugin_disabled.png ├── pub_set.png ├── pub_unset.png ├── score_half_high.png ├── score_half_low.png ├── score_high.png ├── score_low.png ├── score_neutral.png ├── star.png ├── tag.png ├── tick.png ├── time.png ├── toolbar.png ├── treeExpandImages.png ├── untick.png └── user.png ├── include ├── autoload.php ├── ccache.php ├── colors.php ├── crypt.php ├── db-prefs.php ├── db.php ├── digest.php ├── errorhandler.php ├── feedbrowser.php ├── functions.php ├── functions2.php ├── labels.php ├── login_form.php ├── rssfuncs.php ├── sanity_check.php ├── sanity_config.php ├── sessions.php └── version.php ├── index.php ├── install └── index.php ├── js ├── FeedTree.js ├── PluginHost.js ├── PrefFeedTree.js ├── PrefFilterTree.js ├── PrefLabelTree.js ├── deprecated.js ├── feedlist.js ├── functions.js ├── index.html ├── prefs.js ├── sandstorm-offer-template.js ├── tt-rss.js └── viewfeed.js ├── lib ├── CheckBoxTree.js ├── MiniTemplator.class.php ├── Mobile_Detect.php ├── accept-to-gettext.php ├── button │ ├── license.txt │ ├── musicplayer.swf │ └── musicplayer_f6.swf ├── dijit │ ├── BackgroundIframe.js │ ├── Calendar.js │ ├── CalendarLite.js │ ├── CheckedMenuItem.js │ ├── ColorPalette.js │ ├── Declaration.js │ ├── Destroyable.js │ ├── Dialog.js │ ├── DialogUnderlay.js │ ├── DropDownMenu.js │ ├── Editor.js │ ├── InlineEditBox.js │ ├── LICENSE │ ├── Menu.js │ ├── MenuBar.js │ ├── MenuBarItem.js │ ├── MenuItem.js │ ├── MenuSeparator.js │ ├── PopupMenuBarItem.js │ ├── PopupMenuItem.js │ ├── ProgressBar.js │ ├── TitlePane.js │ ├── Toolbar.js │ ├── ToolbarSeparator.js │ ├── Tooltip.js │ ├── TooltipDialog.js │ ├── Tree.js │ ├── Viewport.js │ ├── WidgetSet.js │ ├── _BidiSupport.js │ ├── _Calendar.js │ ├── _Contained.js │ ├── _Container.js │ ├── _CssStateMixin.js │ ├── _DialogMixin.js │ ├── _FocusMixin.js │ ├── _HasDropDown.js │ ├── _KeyNavContainer.js │ ├── _MenuBase.js │ ├── _OnDijitClickMixin.js │ ├── _PaletteMixin.js │ ├── _Templated.js │ ├── _TemplatedMixin.js │ ├── _TimePicker.js │ ├── _Widget.js │ ├── _WidgetBase.js │ ├── _WidgetsInTemplateMixin.js │ ├── _base.js │ ├── _base │ │ ├── focus.js │ │ ├── manager.js │ │ ├── place.js │ │ ├── popup.js │ │ ├── scroll.js │ │ ├── sniff.js │ │ ├── typematic.js │ │ ├── wai.js │ │ └── window.js │ ├── _editor │ │ ├── RichText.js │ │ ├── _Plugin.js │ │ ├── html.js │ │ ├── nls │ │ │ ├── FontChoice.js │ │ │ ├── LinkDialog.js │ │ │ ├── ar │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── az │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── ca │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── commands.js │ │ │ ├── cs │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── da │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── de │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── el │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── es │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── fi │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── fr │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── he │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── hr │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── hu │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── it │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── ja │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── kk │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── ko │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── nb │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── nl │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── pl │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── pt-pt │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── pt │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── ro │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── ru │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── sk │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── sl │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── sv │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── th │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── tr │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ ├── zh-tw │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ │ └── zh │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ └── commands.js │ │ ├── plugins │ │ │ ├── AlwaysShowToolbar.js │ │ │ ├── EnterKeyHandling.js │ │ │ ├── FontChoice.js │ │ │ ├── FullScreen.js │ │ │ ├── LinkDialog.js │ │ │ ├── NewPage.js │ │ │ ├── Print.js │ │ │ ├── TabIndent.js │ │ │ ├── TextColor.js │ │ │ ├── ToggleDir.js │ │ │ └── ViewSource.js │ │ ├── range.js │ │ └── selection.js │ ├── _tree │ │ └── dndSource.js │ ├── a11y.js │ ├── a11yclick.js │ ├── dijit-all.js │ ├── dijit.js │ ├── dijit.profile.js │ ├── focus.js │ ├── form │ │ ├── Button.js │ │ ├── CheckBox.js │ │ ├── ComboBox.js │ │ ├── ComboBoxMixin.js │ │ ├── ComboButton.js │ │ ├── CurrencyTextBox.js │ │ ├── DataList.js │ │ ├── DateTextBox.js │ │ ├── DropDownButton.js │ │ ├── FilteringSelect.js │ │ ├── Form.js │ │ ├── HorizontalRule.js │ │ ├── HorizontalRuleLabels.js │ │ ├── HorizontalSlider.js │ │ ├── MappedTextBox.js │ │ ├── MultiSelect.js │ │ ├── NumberSpinner.js │ │ ├── NumberTextBox.js │ │ ├── RadioButton.js │ │ ├── RangeBoundTextBox.js │ │ ├── Select.js │ │ ├── SimpleTextarea.js │ │ ├── Slider.js │ │ ├── TextBox.js │ │ ├── Textarea.js │ │ ├── TimeTextBox.js │ │ ├── ToggleButton.js │ │ ├── ValidationTextBox.js │ │ ├── VerticalRule.js │ │ ├── VerticalRuleLabels.js │ │ ├── VerticalSlider.js │ │ ├── _AutoCompleterMixin.js │ │ ├── _ButtonMixin.js │ │ ├── _CheckBoxMixin.js │ │ ├── _ComboBoxMenu.js │ │ ├── _ComboBoxMenuMixin.js │ │ ├── _DateTimeTextBox.js │ │ ├── _ExpandingTextAreaMixin.js │ │ ├── _FormMixin.js │ │ ├── _FormSelectWidget.js │ │ ├── _FormValueMixin.js │ │ ├── _FormValueWidget.js │ │ ├── _FormWidget.js │ │ ├── _FormWidgetMixin.js │ │ ├── _ListBase.js │ │ ├── _ListMouseMixin.js │ │ ├── _RadioButtonMixin.js │ │ ├── _SearchMixin.js │ │ ├── _Spinner.js │ │ ├── _TextBoxMixin.js │ │ ├── _ToggleButtonMixin.js │ │ ├── nls │ │ │ ├── ComboBox.js │ │ │ ├── Textarea.js │ │ │ ├── ar │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── az │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── ca │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── cs │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── da │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── de │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── el │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── es │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── fi │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── fr │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── he │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── hr │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── hu │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── it │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── ja │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── kk │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── ko │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── nb │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── nl │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── pl │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── pt-pt │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── pt │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── ro │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── ru │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── sk │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── sl │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── sv │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── th │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── tr │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ ├── validate.js │ │ │ ├── zh-tw │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ │ └── zh │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ └── validate.js │ │ └── templates │ │ │ ├── Button.html │ │ │ ├── CheckBox.html │ │ │ ├── ComboButton.html │ │ │ ├── DropDownBox.html │ │ │ ├── DropDownButton.html │ │ │ ├── HorizontalSlider.html │ │ │ ├── Select.html │ │ │ ├── Spinner.html │ │ │ ├── TextBox.html │ │ │ ├── ValidationTextBox.html │ │ │ └── VerticalSlider.html │ ├── hccss.js │ ├── icons │ │ ├── commonIcons.css │ │ ├── commonIcons_rtl.css │ │ ├── editorIcons.css │ │ ├── editorIcons_rtl.css │ │ └── images │ │ │ ├── commonIconsObjActDisabled.png │ │ │ ├── commonIconsObjActDisabled_rtl.png │ │ │ ├── commonIconsObjActEnabled.png │ │ │ ├── commonIconsObjActEnabled8bit.png │ │ │ ├── commonIconsObjActEnabled8bit_rtl.png │ │ │ ├── commonIconsObjActEnabled_rtl.png │ │ │ ├── editorIconsDisabled.png │ │ │ ├── editorIconsDisabled_rtl.png │ │ │ ├── editorIconsEnabled.png │ │ │ ├── editorIconsEnabled_rtl.png │ │ │ └── loadingAnimation_rtl.gif │ ├── layout │ │ ├── AccordionContainer.js │ │ ├── AccordionPane.js │ │ ├── BorderContainer.js │ │ ├── ContentPane.js │ │ ├── LayoutContainer.js │ │ ├── LinkPane.js │ │ ├── ScrollingTabController.js │ │ ├── SplitContainer.js │ │ ├── StackContainer.js │ │ ├── StackController.js │ │ ├── TabContainer.js │ │ ├── TabController.js │ │ ├── _ContentPaneResizeMixin.js │ │ ├── _LayoutWidget.js │ │ ├── _TabContainerBase.js │ │ ├── templates │ │ │ ├── AccordionButton.html │ │ │ ├── ScrollingTabController.html │ │ │ ├── TabContainer.html │ │ │ ├── _ScrollingTabControllerButton.html │ │ │ └── _TabButton.html │ │ └── utils.js │ ├── main.js │ ├── nls │ │ ├── ar │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── az │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── ca │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── common.js │ │ ├── cs │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── da │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── de │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── el │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── es │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── fi │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── fr │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── he │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── hr │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── hu │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── it │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── ja │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── kk │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── ko │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── loading.js │ │ ├── nb │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── nl │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── pl │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── pt-pt │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── pt │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── ro │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── ru │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── sk │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── sl │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── sv │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── th │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── tr │ │ │ ├── common.js │ │ │ └── loading.js │ │ ├── zh-tw │ │ │ ├── common.js │ │ │ └── loading.js │ │ └── zh │ │ │ ├── common.js │ │ │ └── loading.js │ ├── package.json │ ├── place.js │ ├── popup.js │ ├── registry.js │ ├── templates │ │ ├── Calendar.html │ │ ├── CheckedMenuItem.html │ │ ├── ColorPalette.html │ │ ├── Dialog.html │ │ ├── InlineEditBox.html │ │ ├── Menu.html │ │ ├── MenuBar.html │ │ ├── MenuBarItem.html │ │ ├── MenuItem.html │ │ ├── MenuSeparator.html │ │ ├── ProgressBar.html │ │ ├── TimePicker.html │ │ ├── TitlePane.html │ │ ├── Tooltip.html │ │ ├── TooltipDialog.html │ │ ├── Tree.html │ │ └── TreeNode.html │ ├── themes │ │ ├── a11y │ │ │ ├── README.txt │ │ │ ├── colors3x4.png │ │ │ ├── colors7x10.png │ │ │ └── indeterminate_progress.gif │ │ ├── claro │ │ │ ├── Calendar.css │ │ │ ├── Calendar.less │ │ │ ├── Calendar_rtl.css │ │ │ ├── Calendar_rtl.less │ │ │ ├── ColorPalette.css │ │ │ ├── ColorPalette.less │ │ │ ├── Common.css │ │ │ ├── Common.less │ │ │ ├── Dialog.css │ │ │ ├── Dialog.less │ │ │ ├── Dialog_rtl.css │ │ │ ├── Dialog_rtl.less │ │ │ ├── Editor.css │ │ │ ├── Editor.less │ │ │ ├── Editor_rtl.css │ │ │ ├── Editor_rtl.less │ │ │ ├── InlineEditBox.css │ │ │ ├── InlineEditBox.less │ │ │ ├── Menu.css │ │ │ ├── Menu.less │ │ │ ├── Menu_rtl.css │ │ │ ├── Menu_rtl.less │ │ │ ├── ProgressBar.css │ │ │ ├── ProgressBar.less │ │ │ ├── README │ │ │ ├── TimePicker.css │ │ │ ├── TimePicker.less │ │ │ ├── TimePicker_rtl.css │ │ │ ├── TimePicker_rtl.less │ │ │ ├── TitlePane.css │ │ │ ├── TitlePane.less │ │ │ ├── TitlePane_rtl.css │ │ │ ├── TitlePane_rtl.less │ │ │ ├── Toolbar.css │ │ │ ├── Toolbar.less │ │ │ ├── Toolbar_rtl.css │ │ │ ├── Toolbar_rtl.less │ │ │ ├── Tree.css │ │ │ ├── Tree.less │ │ │ ├── claro.css │ │ │ ├── claro_rtl.css │ │ │ ├── compile.js │ │ │ ├── document.css │ │ │ ├── document.less │ │ │ ├── form │ │ │ │ ├── Button.css │ │ │ │ ├── Button.less │ │ │ │ ├── Button_rtl.css │ │ │ │ ├── Button_rtl.less │ │ │ │ ├── Checkbox.css │ │ │ │ ├── Checkbox.less │ │ │ │ ├── Common.css │ │ │ │ ├── Common.less │ │ │ │ ├── Common_rtl.css │ │ │ │ ├── Common_rtl.less │ │ │ │ ├── NumberSpinner.css │ │ │ │ ├── NumberSpinner.less │ │ │ │ ├── RadioButton.css │ │ │ │ ├── RadioButton.less │ │ │ │ ├── Select.css │ │ │ │ ├── Select.less │ │ │ │ ├── Slider.css │ │ │ │ ├── Slider.less │ │ │ │ ├── Slider_rtl.css │ │ │ │ ├── Slider_rtl.less │ │ │ │ └── images │ │ │ │ │ ├── buttonArrows.png │ │ │ │ │ ├── buttonDisabled.png │ │ │ │ │ ├── buttonDisabled.svg │ │ │ │ │ ├── buttonEnabled.png │ │ │ │ │ ├── buttonEnabled.svg │ │ │ │ │ ├── checkboxAndRadioButtons_IE6.png │ │ │ │ │ ├── checkboxRadioButtonStates.png │ │ │ │ │ ├── commonFormArrows.png │ │ │ │ │ ├── error.png │ │ │ │ │ └── sliderThumbs.png │ │ │ ├── images │ │ │ │ ├── activeGradient.png │ │ │ │ ├── activeGradient.svg │ │ │ │ ├── calendar.png │ │ │ │ ├── calendarArrows.png │ │ │ │ ├── calendarArrows8bit.png │ │ │ │ ├── checkmarkNoBorder.gif │ │ │ │ ├── checkmarkNoBorder.png │ │ │ │ ├── dialogCloseIcon.png │ │ │ │ ├── dialogCloseIcon8bit.png │ │ │ │ ├── dnd.png │ │ │ │ ├── loadingAnimation.gif │ │ │ │ ├── progressBarAnim.gif │ │ │ │ ├── progressBarFull.png │ │ │ │ ├── spriteArrows.png │ │ │ │ ├── standardGradient.png │ │ │ │ ├── standardGradient.svg │ │ │ │ ├── tooltip.png │ │ │ │ ├── tooltip8bit.png │ │ │ │ ├── treeExpandImages.png │ │ │ │ └── treeExpandImages8bit.png │ │ │ ├── layout │ │ │ │ ├── AccordionContainer.css │ │ │ │ ├── AccordionContainer.less │ │ │ │ ├── BorderContainer.css │ │ │ │ ├── BorderContainer.less │ │ │ │ ├── ContentPane.css │ │ │ │ ├── ContentPane.less │ │ │ │ ├── TabContainer.css │ │ │ │ ├── TabContainer.less │ │ │ │ ├── TabContainer_rtl.css │ │ │ │ ├── TabContainer_rtl.less │ │ │ │ └── images │ │ │ │ │ ├── tabBottomSelected.png │ │ │ │ │ ├── tabBottomSelected.svg │ │ │ │ │ ├── tabBottomUnselected.png │ │ │ │ │ ├── tabBottomUnselected.svg │ │ │ │ │ ├── tabClose.png │ │ │ │ │ ├── tabLeftSelected.png │ │ │ │ │ ├── tabLeftSelected.svg │ │ │ │ │ ├── tabLeftUnselected.png │ │ │ │ │ ├── tabLeftUnselected.svg │ │ │ │ │ ├── tabNested.png │ │ │ │ │ ├── tabRightSelected.png │ │ │ │ │ ├── tabRightSelected.svg │ │ │ │ │ ├── tabRightUnselected.png │ │ │ │ │ ├── tabRightUnselected.svg │ │ │ │ │ ├── tabTopSelected.png │ │ │ │ │ ├── tabTopSelected.svg │ │ │ │ │ ├── tabTopUnselected.png │ │ │ │ │ └── tabTopUnselected.svg │ │ │ └── variables.less │ │ ├── dijit.css │ │ ├── dijit_rtl.css │ │ ├── nihilo │ │ │ ├── Calendar.css │ │ │ ├── Calendar_rtl.css │ │ │ ├── ColorPalette.css │ │ │ ├── Common.css │ │ │ ├── Dialog.css │ │ │ ├── Dialog_rtl.css │ │ │ ├── Editor.css │ │ │ ├── Editor_rtl.css │ │ │ ├── Menu.css │ │ │ ├── Menu_rtl.css │ │ │ ├── ProgressBar.css │ │ │ ├── TimePicker.css │ │ │ ├── TimePicker_rtl.css │ │ │ ├── TitlePane.css │ │ │ ├── TitlePane_rtl.css │ │ │ ├── Toolbar.css │ │ │ ├── Tree.css │ │ │ ├── Tree_rtl.css │ │ │ ├── form │ │ │ │ ├── Button.css │ │ │ │ ├── Button_rtl.css │ │ │ │ ├── Checkbox.css │ │ │ │ ├── Common.css │ │ │ │ ├── RadioButton.css │ │ │ │ ├── Select.css │ │ │ │ ├── Slider.css │ │ │ │ ├── Slider_rtl.css │ │ │ │ └── TimeTextBox.css │ │ │ ├── images │ │ │ │ ├── accordionItemActive.png │ │ │ │ ├── buttonActive.png │ │ │ │ ├── buttonDisabled.png │ │ │ │ ├── buttonEnabled.png │ │ │ │ ├── buttonHover.png │ │ │ │ ├── dndCopy.png │ │ │ │ ├── dndMove.png │ │ │ │ ├── dndNoCopy.png │ │ │ │ ├── dndNoMove.png │ │ │ │ ├── no.gif │ │ │ │ ├── preciseSliderThumb.gif │ │ │ │ ├── preciseSliderThumb.png │ │ │ │ ├── preciseSliderThumbFocus.gif │ │ │ │ ├── preciseSliderThumbFocus.png │ │ │ │ ├── progressBarAnim.gif │ │ │ │ ├── progressBarEmpty.png │ │ │ │ ├── progressBarFull.png │ │ │ │ ├── sliderEmpty.png │ │ │ │ ├── sliderEmptyVertical.png │ │ │ │ ├── sliderFull.png │ │ │ │ ├── sliderFullFocus.png │ │ │ │ ├── sliderFullVertical.png │ │ │ │ ├── sliderFullVerticalFocus.png │ │ │ │ ├── sliderThumb.gif │ │ │ │ ├── sliderThumb.png │ │ │ │ ├── sliderThumbFocus.gif │ │ │ │ ├── sliderThumbFocus.png │ │ │ │ ├── splitContainerSizerH-thumb.png │ │ │ │ ├── splitContainerSizerH.png │ │ │ │ ├── splitContainerSizerV-thumb.png │ │ │ │ ├── splitContainerSizerV.png │ │ │ │ ├── spriteArrows.gif │ │ │ │ ├── spriteArrows.png │ │ │ │ ├── spriteCheckbox.gif │ │ │ │ ├── spriteCheckbox.png │ │ │ │ ├── spriteDivIcons.gif │ │ │ │ ├── spriteDivIcons.png │ │ │ │ ├── spriteRadio.gif │ │ │ │ ├── spriteRadio.png │ │ │ │ ├── spriteRoundedIconsSmall.gif │ │ │ │ ├── spriteRoundedIconsSmall.png │ │ │ │ ├── spriteTree.gif │ │ │ │ ├── spriteTree.png │ │ │ │ ├── spriteTree_rtl.gif │ │ │ │ ├── spriteTree_rtl.png │ │ │ │ ├── tabBottomActiveC.gif │ │ │ │ ├── tabBottomEnabledC.gif │ │ │ │ ├── tabBottomHoverC.gif │ │ │ │ ├── tabContainerSprite.gif │ │ │ │ ├── titleBar.png │ │ │ │ ├── titleBarActive.png │ │ │ │ ├── tooltipConnectorDown.gif │ │ │ │ ├── tooltipConnectorDown.png │ │ │ │ ├── tooltipConnectorLeft.gif │ │ │ │ ├── tooltipConnectorLeft.png │ │ │ │ ├── tooltipConnectorRight.gif │ │ │ │ ├── tooltipConnectorRight.png │ │ │ │ ├── tooltipConnectorUp.gif │ │ │ │ ├── tooltipConnectorUp.png │ │ │ │ ├── treeExpand_loading.gif │ │ │ │ ├── treeHover.png │ │ │ │ ├── treeI.gif │ │ │ │ ├── treeI_half.gif │ │ │ │ ├── treeI_half_rtl.gif │ │ │ │ ├── treeI_rtl.gif │ │ │ │ ├── validationInputBg.gif │ │ │ │ ├── validationInputBg.png │ │ │ │ └── warning.png │ │ │ ├── layout │ │ │ │ ├── AccordionContainer.css │ │ │ │ ├── AccordionContainer_rtl.css │ │ │ │ ├── BorderContainer.css │ │ │ │ ├── ContentPane.css │ │ │ │ ├── SplitContainer.css │ │ │ │ ├── TabContainer.css │ │ │ │ └── TabContainer_rtl.css │ │ │ ├── nihilo.css │ │ │ └── nihilo_rtl.css │ │ ├── soria │ │ │ ├── Calendar.css │ │ │ ├── Calendar_rtl.css │ │ │ ├── ColorPalette.css │ │ │ ├── Common.css │ │ │ ├── Dialog.css │ │ │ ├── Dialog_rtl.css │ │ │ ├── Editor.css │ │ │ ├── Editor_rtl.css │ │ │ ├── Menu.css │ │ │ ├── Menu_rtl.css │ │ │ ├── ProgressBar.css │ │ │ ├── TimePicker.css │ │ │ ├── TimePicker_rtl.css │ │ │ ├── TitlePane.css │ │ │ ├── TitlePane_rtl.css │ │ │ ├── Toolbar.css │ │ │ ├── Tree.css │ │ │ ├── Tree_rtl.css │ │ │ ├── form │ │ │ │ ├── Button.css │ │ │ │ ├── Button_rtl.css │ │ │ │ ├── Checkbox.css │ │ │ │ ├── Common.css │ │ │ │ ├── RadioButton.css │ │ │ │ ├── Select.css │ │ │ │ ├── Slider.css │ │ │ │ ├── Slider_rtl.css │ │ │ │ └── TimeTextBox.css │ │ │ ├── images │ │ │ │ ├── accordionItemActive.gif │ │ │ │ ├── accordionItemActive.png │ │ │ │ ├── buttonActive.png │ │ │ │ ├── buttonDisabled.png │ │ │ │ ├── buttonEnabled.png │ │ │ │ ├── buttonHover.png │ │ │ │ ├── dndCopy.png │ │ │ │ ├── dndMove.png │ │ │ │ ├── dndNoCopy.png │ │ │ │ ├── dndNoMove.png │ │ │ │ ├── preciseSliderThumb.gif │ │ │ │ ├── preciseSliderThumb.png │ │ │ │ ├── preciseSliderThumbFocus.gif │ │ │ │ ├── preciseSliderThumbFocus.png │ │ │ │ ├── progressBarAnim.gif │ │ │ │ ├── progressBarEmpty.png │ │ │ │ ├── progressBarFull.png │ │ │ │ ├── sliderEmpty.png │ │ │ │ ├── sliderEmptyVertical.png │ │ │ │ ├── sliderFull.png │ │ │ │ ├── sliderFullFocus.png │ │ │ │ ├── sliderFullVertical.png │ │ │ │ ├── sliderFullVerticalFocus.png │ │ │ │ ├── sliderThumb.gif │ │ │ │ ├── sliderThumb.png │ │ │ │ ├── sliderThumbFocus.gif │ │ │ │ ├── sliderThumbFocus.png │ │ │ │ ├── splitContainerSizerH-thumb.png │ │ │ │ ├── splitContainerSizerH.png │ │ │ │ ├── splitContainerSizerV-thumb.png │ │ │ │ ├── splitContainerSizerV.png │ │ │ │ ├── spriteArrows.gif │ │ │ │ ├── spriteArrows.png │ │ │ │ ├── spriteCheckbox.gif │ │ │ │ ├── spriteCheckbox.png │ │ │ │ ├── spriteDivIcons.gif │ │ │ │ ├── spriteDivIcons.png │ │ │ │ ├── spriteRadio.gif │ │ │ │ ├── spriteRadio.png │ │ │ │ ├── spriteRoundedIconsSmall.gif │ │ │ │ ├── spriteRoundedIconsSmall.png │ │ │ │ ├── spriteRoundedIconsSmallBl.gif │ │ │ │ ├── spriteRoundedIconsSmallBl.png │ │ │ │ ├── spriteTree.gif │ │ │ │ ├── spriteTree.png │ │ │ │ ├── spriteTree_rtl.gif │ │ │ │ ├── spriteTree_rtl.png │ │ │ │ ├── tabBottomActiveC.gif │ │ │ │ ├── tabBottomEnabledC.gif │ │ │ │ ├── tabBottomEnabledSpriteLR.gif │ │ │ │ ├── tabBottomHoverC.gif │ │ │ │ ├── tabContainerSprite.gif │ │ │ │ ├── tabLeftChecked.gif │ │ │ │ ├── tabRightChecked.gif │ │ │ │ ├── titleBar.png │ │ │ │ ├── titleBarActive.png │ │ │ │ ├── tooltipConnectorDown.gif │ │ │ │ ├── tooltipConnectorDown.png │ │ │ │ ├── tooltipConnectorLeft.gif │ │ │ │ ├── tooltipConnectorLeft.png │ │ │ │ ├── tooltipConnectorRight.gif │ │ │ │ ├── tooltipConnectorRight.png │ │ │ │ ├── tooltipConnectorUp.gif │ │ │ │ ├── tooltipConnectorUp.png │ │ │ │ ├── treeExpand_loading.gif │ │ │ │ ├── treeHover.png │ │ │ │ ├── treeI.gif │ │ │ │ ├── treeI_half.gif │ │ │ │ ├── treeI_half_rtl.gif │ │ │ │ ├── treeI_rtl.gif │ │ │ │ ├── validationInputBg.gif │ │ │ │ ├── validationInputBg.png │ │ │ │ └── warning.png │ │ │ ├── layout │ │ │ │ ├── AccordionContainer.css │ │ │ │ ├── AccordionContainer_rtl.css │ │ │ │ ├── BorderContainer.css │ │ │ │ ├── ContentPane.css │ │ │ │ ├── SplitContainer.css │ │ │ │ ├── TabContainer.css │ │ │ │ └── TabContainer_rtl.css │ │ │ ├── soria.css │ │ │ └── soria_rtl.css │ │ └── tundra │ │ │ ├── Calendar.css │ │ │ ├── Calendar_rtl.css │ │ │ ├── ColorPalette.css │ │ │ ├── Common.css │ │ │ ├── Dialog.css │ │ │ ├── Dialog_rtl.css │ │ │ ├── Editor.css │ │ │ ├── Editor_rtl.css │ │ │ ├── Menu.css │ │ │ ├── Menu_rtl.css │ │ │ ├── ProgressBar.css │ │ │ ├── TimePicker.css │ │ │ ├── TimePicker_rtl.css │ │ │ ├── TitlePane.css │ │ │ ├── TitlePane_rtl.css │ │ │ ├── Toolbar.css │ │ │ ├── Tree.css │ │ │ ├── Tree_rtl.css │ │ │ ├── form │ │ │ ├── Button.css │ │ │ ├── Checkbox.css │ │ │ ├── Common.css │ │ │ ├── RadioButton.css │ │ │ ├── Select.css │ │ │ ├── Slider.css │ │ │ └── Slider_rtl.css │ │ │ ├── images │ │ │ ├── accordionItemActive.gif │ │ │ ├── accordionItemHover.gif │ │ │ ├── buttonActive.png │ │ │ ├── buttonDisabled.png │ │ │ ├── buttonEnabled.png │ │ │ ├── buttonHover.png │ │ │ ├── calendarDayLabel.png │ │ │ ├── calendarMonthLabel.png │ │ │ ├── calendarYearLabel.png │ │ │ ├── checkmark.gif │ │ │ ├── checkmark.png │ │ │ ├── checkmarkNoBorder.gif │ │ │ ├── checkmarkNoBorder.png │ │ │ ├── circleIcon.gif │ │ │ ├── circleIcon.png │ │ │ ├── comboArrowDown.gif │ │ │ ├── dijitProgressBarAnim.gif │ │ │ ├── dijitProgressBarAnim.psd │ │ │ ├── dndCopy.png │ │ │ ├── dndMove.png │ │ │ ├── dndNoCopy.png │ │ │ ├── dndNoMove.png │ │ │ ├── dojoTundraGradientBg.gif │ │ │ ├── dojoTundraGradientBg.png │ │ │ ├── doubleArrowDown.png │ │ │ ├── doubleArrowUp.png │ │ │ ├── folderClosed.gif │ │ │ ├── folderOpened.gif │ │ │ ├── i.gif │ │ │ ├── i_half.gif │ │ │ ├── i_half_rtl.gif │ │ │ ├── i_rtl.gif │ │ │ ├── leaf.gif │ │ │ ├── loading.gif │ │ │ ├── menu.png │ │ │ ├── minusButton.gif │ │ │ ├── no.gif │ │ │ ├── noX.gif │ │ │ ├── plusButton.gif │ │ │ ├── popupMenuBg.gif │ │ │ ├── preciseSliderThumb.gif │ │ │ ├── preciseSliderThumb.png │ │ │ ├── preciseSliderThumbFocus.gif │ │ │ ├── preciseSliderThumbFocus.png │ │ │ ├── progressBarAnim-1.png │ │ │ ├── progressBarAnim-2.png │ │ │ ├── progressBarAnim-3.png │ │ │ ├── progressBarAnim-4.png │ │ │ ├── progressBarAnim-5.png │ │ │ ├── progressBarAnim-6.png │ │ │ ├── progressBarAnim-7.png │ │ │ ├── progressBarAnim-8.png │ │ │ ├── progressBarAnim-9.png │ │ │ ├── progressBarAnim.gif │ │ │ ├── progressBarAnim.psd │ │ │ ├── progressBarEmpty.png │ │ │ ├── progressBarFull.png │ │ │ ├── radioButtonActive.png │ │ │ ├── radioButtonActiveDisabled.png │ │ │ ├── radioButtonActiveHover.png │ │ │ ├── radioButtonDisabled.png │ │ │ ├── radioButtonEnabled.png │ │ │ ├── radioButtonHover.png │ │ │ ├── sliderEmpty.png │ │ │ ├── sliderEmptyVertical.png │ │ │ ├── sliderFull.png │ │ │ ├── sliderFullFocus.png │ │ │ ├── sliderFullVertical.png │ │ │ ├── sliderFullVerticalFocus.png │ │ │ ├── sliderThumb.png │ │ │ ├── sliderThumbFocus.gif │ │ │ ├── sliderThumbFocus.png │ │ │ ├── smallArrowDown.png │ │ │ ├── smallArrowUp.png │ │ │ ├── splitContainerSizerH-thumb.png │ │ │ ├── splitContainerSizerH.png │ │ │ ├── splitContainerSizerV-thumb.png │ │ │ ├── splitContainerSizerV.png │ │ │ ├── spriteArrows.gif │ │ │ ├── spriteArrows.png │ │ │ ├── spriteRoundedIconsSmall.gif │ │ │ ├── spriteRoundedIconsSmall.png │ │ │ ├── tabActive.png │ │ │ ├── tabClose.gif │ │ │ ├── tabClose.png │ │ │ ├── tabCloseHover.gif │ │ │ ├── tabCloseHover.png │ │ │ ├── tabDisabled.png │ │ │ ├── tabEnabled.png │ │ │ ├── tabHover.gif │ │ │ ├── tabHover.png │ │ │ ├── titleBar.png │ │ │ ├── titleBarBg.gif │ │ │ ├── tooltipConnectorDown.gif │ │ │ ├── tooltipConnectorDown.png │ │ │ ├── tooltipConnectorLeft.gif │ │ │ ├── tooltipConnectorLeft.png │ │ │ ├── tooltipConnectorRight.gif │ │ │ ├── tooltipConnectorRight.png │ │ │ ├── tooltipConnectorUp.gif │ │ │ ├── tooltipConnectorUp.png │ │ │ ├── treeExpand_leaf.gif │ │ │ ├── treeExpand_leaf_rtl.gif │ │ │ ├── treeExpand_loading.gif │ │ │ ├── treeExpand_minus.gif │ │ │ ├── treeExpand_minus_rtl.gif │ │ │ ├── treeExpand_mius.gif │ │ │ ├── treeExpand_plus.gif │ │ │ ├── treeExpand_plus_rtl.gif │ │ │ ├── treeHover.png │ │ │ ├── validationInputBg.gif │ │ │ ├── validationInputBg.png │ │ │ └── warning.png │ │ │ ├── layout │ │ │ ├── AccordionContainer.css │ │ │ ├── BorderContainer.css │ │ │ ├── ContentPane.css │ │ │ ├── SplitContainer.css │ │ │ ├── TabContainer.css │ │ │ └── TabContainer_rtl.css │ │ │ ├── tundra.css │ │ │ └── tundra_rtl.css │ ├── tree │ │ ├── ForestStoreModel.js │ │ ├── ObjectStoreModel.js │ │ ├── TreeStoreModel.js │ │ ├── _dndContainer.js │ │ ├── _dndSelector.js │ │ ├── dndSource.js │ │ └── model.js │ └── typematic.js ├── dojo-src │ ├── .gitignore │ ├── rebuild-dojo.sh │ └── tt-rss.profile.js ├── dojo │ ├── AdapterRegistry.js │ ├── Deferred.js │ ├── DeferredList.js │ ├── Evented.js │ ├── LICENSE │ ├── NodeList-data.js │ ├── NodeList-dom.js │ ├── NodeList-fx.js │ ├── NodeList-html.js │ ├── NodeList-manipulate.js │ ├── NodeList-traverse.js │ ├── NodeList.js │ ├── OpenAjax.js │ ├── Stateful.js │ ├── _base │ │ ├── Color.js │ │ ├── Deferred.js │ │ ├── NodeList.js │ │ ├── array.js │ │ ├── browser.js │ │ ├── config.js │ │ ├── configFirefoxExtension.js │ │ ├── configNode.js │ │ ├── configRhino.js │ │ ├── configSpidermonkey.js │ │ ├── connect.js │ │ ├── declare.js │ │ ├── event.js │ │ ├── fx.js │ │ ├── html.js │ │ ├── json.js │ │ ├── kernel.js │ │ ├── lang.js │ │ ├── loader.js │ │ ├── query.js │ │ ├── sniff.js │ │ ├── unload.js │ │ ├── url.js │ │ ├── window.js │ │ └── xhr.js │ ├── _firebug │ │ ├── LICENSE │ │ ├── errorIcon.png │ │ ├── firebug.css │ │ ├── firebug.js │ │ ├── infoIcon.png │ │ ├── tab_lft_norm.png │ │ ├── tab_lft_over.png │ │ ├── tab_rgt_norm.png │ │ ├── tab_rgt_over.png │ │ └── warningIcon.png │ ├── aspect.js │ ├── back.js │ ├── behavior.js │ ├── cache.js │ ├── cldr │ │ ├── LICENSE │ │ ├── README │ │ ├── monetary.js │ │ ├── nls │ │ │ ├── ar │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── buddhist.js │ │ │ ├── ca │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ └── number.js │ │ │ ├── cs │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── currency.js │ │ │ ├── da │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── de │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── el │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ └── number.js │ │ │ ├── en-au │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ └── number.js │ │ │ ├── en-ca │ │ │ │ ├── currency.js │ │ │ │ └── gregorian.js │ │ │ ├── en-gb │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── en │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── es │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── fi │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── fr-ch │ │ │ │ ├── gregorian.js │ │ │ │ └── number.js │ │ │ ├── fr │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── gregorian.js │ │ │ ├── he │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── hebrew.js │ │ │ ├── hu │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── islamic.js │ │ │ ├── it │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── ja │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── ko │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ └── number.js │ │ │ ├── nb │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── nl │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── number.js │ │ │ ├── pl │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── pt-pt │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── pt │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── ro │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── ru │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── sk │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ └── number.js │ │ │ ├── sl │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ └── number.js │ │ │ ├── sv │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── th │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── tr │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── zh-hant │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ │ ├── zh-hk │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ └── number.js │ │ │ ├── zh-tw │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ └── number.js │ │ │ └── zh │ │ │ │ ├── buddhist.js │ │ │ │ ├── currency.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── islamic.js │ │ │ │ └── number.js │ │ └── supplemental.js │ ├── colors.js │ ├── cookie.js │ ├── currency.js │ ├── data │ │ ├── ItemFileReadStore.js │ │ ├── ItemFileWriteStore.js │ │ ├── ObjectStore.js │ │ ├── api │ │ │ ├── Identity.js │ │ │ ├── Item.js │ │ │ ├── Notification.js │ │ │ ├── Read.js │ │ │ ├── Request.js │ │ │ └── Write.js │ │ └── util │ │ │ ├── filter.js │ │ │ ├── simpleFetch.js │ │ │ └── sorter.js │ ├── date.js │ ├── date │ │ ├── locale.js │ │ └── stamp.js │ ├── dnd │ │ ├── AutoSource.js │ │ ├── Avatar.js │ │ ├── Container.js │ │ ├── Manager.js │ │ ├── Moveable.js │ │ ├── Mover.js │ │ ├── Selector.js │ │ ├── Source.js │ │ ├── Target.js │ │ ├── TimedMoveable.js │ │ ├── autoscroll.js │ │ ├── common.js │ │ └── move.js │ ├── dojo.js │ ├── dojo.profile.js │ ├── dom-attr.js │ ├── dom-class.js │ ├── dom-construct.js │ ├── dom-form.js │ ├── dom-geometry.js │ ├── dom-prop.js │ ├── dom-style.js │ ├── dom.js │ ├── domReady.js │ ├── errors │ │ ├── CancelError.js │ │ ├── RequestError.js │ │ ├── RequestTimeoutError.js │ │ └── create.js │ ├── fx.js │ ├── fx │ │ ├── Toggler.js │ │ └── easing.js │ ├── gears.js │ ├── has.js │ ├── hash.js │ ├── hccss.js │ ├── html.js │ ├── i18n.js │ ├── io-query.js │ ├── io │ │ ├── iframe.js │ │ └── script.js │ ├── jaxer.js │ ├── json.js │ ├── keys.js │ ├── loadInit.js │ ├── main.js │ ├── mouse.js │ ├── nls │ │ ├── ar │ │ │ └── colors.js │ │ ├── az │ │ │ └── colors.js │ │ ├── ca │ │ │ └── colors.js │ │ ├── colors.js │ │ ├── cs │ │ │ └── colors.js │ │ ├── da │ │ │ └── colors.js │ │ ├── de │ │ │ └── colors.js │ │ ├── el │ │ │ └── colors.js │ │ ├── es │ │ │ └── colors.js │ │ ├── fi │ │ │ └── colors.js │ │ ├── fr │ │ │ └── colors.js │ │ ├── he │ │ │ └── colors.js │ │ ├── hr │ │ │ └── colors.js │ │ ├── hu │ │ │ └── colors.js │ │ ├── it │ │ │ └── colors.js │ │ ├── ja │ │ │ └── colors.js │ │ ├── kk │ │ │ └── colors.js │ │ ├── ko │ │ │ └── colors.js │ │ ├── nb │ │ │ └── colors.js │ │ ├── nl │ │ │ └── colors.js │ │ ├── pl │ │ │ └── colors.js │ │ ├── pt-pt │ │ │ └── colors.js │ │ ├── pt │ │ │ └── colors.js │ │ ├── ro │ │ │ └── colors.js │ │ ├── ru │ │ │ └── colors.js │ │ ├── sk │ │ │ └── colors.js │ │ ├── sl │ │ │ └── colors.js │ │ ├── sv │ │ │ └── colors.js │ │ ├── th │ │ │ └── colors.js │ │ ├── tr │ │ │ └── colors.js │ │ ├── tt-rss-layer_ROOT.js │ │ ├── tt-rss-layer_ar.js │ │ ├── tt-rss-layer_ca.js │ │ ├── tt-rss-layer_cs.js │ │ ├── tt-rss-layer_da.js │ │ ├── tt-rss-layer_de.js │ │ ├── tt-rss-layer_el.js │ │ ├── tt-rss-layer_en-gb.js │ │ ├── tt-rss-layer_en-us.js │ │ ├── tt-rss-layer_es-es.js │ │ ├── tt-rss-layer_fi-fi.js │ │ ├── tt-rss-layer_fr-fr.js │ │ ├── tt-rss-layer_he-il.js │ │ ├── tt-rss-layer_hu.js │ │ ├── tt-rss-layer_it-it.js │ │ ├── tt-rss-layer_ja-jp.js │ │ ├── tt-rss-layer_ko-kr.js │ │ ├── tt-rss-layer_nb.js │ │ ├── tt-rss-layer_nl-nl.js │ │ ├── tt-rss-layer_pl.js │ │ ├── tt-rss-layer_pt-br.js │ │ ├── tt-rss-layer_pt-pt.js │ │ ├── tt-rss-layer_ru.js │ │ ├── tt-rss-layer_sk.js │ │ ├── tt-rss-layer_sl.js │ │ ├── tt-rss-layer_sv.js │ │ ├── tt-rss-layer_th.js │ │ ├── tt-rss-layer_tr.js │ │ ├── tt-rss-layer_zh-cn.js │ │ ├── tt-rss-layer_zh-tw.js │ │ ├── zh-tw │ │ │ └── colors.js │ │ └── zh │ │ │ └── colors.js │ ├── node.js │ ├── number.js │ ├── on.js │ ├── package.json │ ├── parser.js │ ├── promise │ │ ├── Promise.js │ │ ├── all.js │ │ ├── first.js │ │ ├── instrumentation.js │ │ └── tracer.js │ ├── query.js │ ├── ready.js │ ├── regexp.js │ ├── request.js │ ├── request │ │ ├── default.js │ │ ├── handlers.js │ │ ├── iframe.js │ │ ├── node.js │ │ ├── notify.js │ │ ├── registry.js │ │ ├── script.js │ │ ├── util.js │ │ ├── watch.js │ │ └── xhr.js │ ├── require.js │ ├── resources │ │ ├── LICENSE │ │ ├── blank.gif │ │ ├── blank.html │ │ ├── dnd.css │ │ ├── dojo.css │ │ ├── iframe_history.html │ │ └── images │ │ │ ├── dndCopy.png │ │ │ ├── dndMove.png │ │ │ ├── dndNoCopy.png │ │ │ └── dndNoMove.png │ ├── router.js │ ├── router │ │ └── RouterBase.js │ ├── rpc │ │ ├── JsonService.js │ │ ├── JsonpService.js │ │ └── RpcService.js │ ├── selector │ │ ├── _loader.js │ │ ├── acme.js │ │ └── lite.js │ ├── sniff.js │ ├── store │ │ ├── Cache.js │ │ ├── DataStore.js │ │ ├── JsonRest.js │ │ ├── Memory.js │ │ ├── Observable.js │ │ ├── README │ │ ├── api │ │ │ └── Store.js │ │ └── util │ │ │ ├── QueryResults.js │ │ │ └── SimpleQueryEngine.js │ ├── string.js │ ├── text.js │ ├── topic.js │ ├── touch.js │ ├── tt-rss-layer.js │ ├── uacss.js │ ├── when.js │ └── window.js ├── floIcon.php ├── gettext │ ├── README │ ├── gettext.inc │ ├── gettext.php │ └── streams.php ├── index.html ├── jimIcon.php ├── jshrink │ ├── LICENSE │ ├── Minifier.php │ └── README.md ├── languagedetect │ ├── LanguageDetect.php │ ├── Text │ │ └── LanguageDetect │ │ │ ├── Exception.php │ │ │ ├── ISO639.php │ │ │ └── Parser.php │ └── data │ │ ├── lang.dat │ │ └── unicode_blocks.dat ├── otphp │ ├── LICENCE │ ├── lib │ │ ├── hotp.php │ │ ├── otp.php │ │ ├── otphp.php │ │ └── totp.php │ └── vendor │ │ ├── base32.php │ │ └── libs.php ├── phpmailer │ ├── class.phpmailer.php │ ├── class.smtp.php │ └── language │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-br.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-cz.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-dk.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-no.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-se.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php ├── phpqrcode │ ├── CHANGELOG │ ├── INSTALL │ ├── LICENSE │ ├── README │ ├── VERSION │ ├── bindings │ │ └── tcpdf │ │ │ └── qrcode.php │ ├── cache │ │ ├── frame_1.dat │ │ ├── frame_1.png │ │ ├── frame_10.dat │ │ ├── frame_10.png │ │ ├── frame_11.dat │ │ ├── frame_11.png │ │ ├── frame_12.dat │ │ ├── frame_12.png │ │ ├── frame_13.dat │ │ ├── frame_13.png │ │ ├── frame_14.dat │ │ ├── frame_14.png │ │ ├── frame_15.dat │ │ ├── frame_15.png │ │ ├── frame_16.dat │ │ ├── frame_16.png │ │ ├── frame_17.dat │ │ ├── frame_17.png │ │ ├── frame_18.dat │ │ ├── frame_18.png │ │ ├── frame_19.dat │ │ ├── frame_19.png │ │ ├── frame_2.dat │ │ ├── frame_2.png │ │ ├── frame_20.dat │ │ ├── frame_20.png │ │ ├── frame_21.dat │ │ ├── frame_21.png │ │ ├── frame_22.dat │ │ ├── frame_22.png │ │ ├── frame_23.dat │ │ ├── frame_23.png │ │ ├── frame_24.dat │ │ ├── frame_24.png │ │ ├── frame_25.dat │ │ ├── frame_25.png │ │ ├── frame_26.dat │ │ ├── frame_26.png │ │ ├── frame_27.dat │ │ ├── frame_27.png │ │ ├── frame_28.dat │ │ ├── frame_28.png │ │ ├── frame_29.dat │ │ ├── frame_29.png │ │ ├── frame_3.dat │ │ ├── frame_3.png │ │ ├── frame_30.dat │ │ ├── frame_30.png │ │ ├── frame_31.dat │ │ ├── frame_31.png │ │ ├── frame_32.dat │ │ ├── frame_32.png │ │ ├── frame_33.dat │ │ ├── frame_33.png │ │ ├── frame_34.dat │ │ ├── frame_34.png │ │ ├── frame_35.dat │ │ ├── frame_35.png │ │ ├── frame_36.dat │ │ ├── frame_36.png │ │ ├── frame_37.dat │ │ ├── frame_37.png │ │ ├── frame_38.dat │ │ ├── frame_38.png │ │ ├── frame_39.dat │ │ ├── frame_39.png │ │ ├── frame_4.dat │ │ ├── frame_4.png │ │ ├── frame_40.dat │ │ ├── frame_40.png │ │ ├── frame_5.dat │ │ ├── frame_5.png │ │ ├── frame_6.dat │ │ ├── frame_6.png │ │ ├── frame_7.dat │ │ ├── frame_7.png │ │ ├── frame_8.dat │ │ ├── frame_8.png │ │ ├── frame_9.dat │ │ ├── frame_9.png │ │ ├── mask_0 │ │ │ ├── mask_101_0.dat │ │ │ ├── mask_105_0.dat │ │ │ ├── mask_109_0.dat │ │ │ ├── mask_113_0.dat │ │ │ ├── mask_117_0.dat │ │ │ ├── mask_121_0.dat │ │ │ ├── mask_125_0.dat │ │ │ ├── mask_129_0.dat │ │ │ ├── mask_133_0.dat │ │ │ ├── mask_137_0.dat │ │ │ ├── mask_141_0.dat │ │ │ ├── mask_145_0.dat │ │ │ ├── mask_149_0.dat │ │ │ ├── mask_153_0.dat │ │ │ ├── mask_157_0.dat │ │ │ ├── mask_161_0.dat │ │ │ ├── mask_165_0.dat │ │ │ ├── mask_169_0.dat │ │ │ ├── mask_173_0.dat │ │ │ ├── mask_177_0.dat │ │ │ ├── mask_21_0.dat │ │ │ ├── mask_25_0.dat │ │ │ ├── mask_29_0.dat │ │ │ ├── mask_33_0.dat │ │ │ ├── mask_37_0.dat │ │ │ ├── mask_41_0.dat │ │ │ ├── mask_45_0.dat │ │ │ ├── mask_49_0.dat │ │ │ ├── mask_53_0.dat │ │ │ ├── mask_57_0.dat │ │ │ ├── mask_61_0.dat │ │ │ ├── mask_65_0.dat │ │ │ ├── mask_69_0.dat │ │ │ ├── mask_73_0.dat │ │ │ ├── mask_77_0.dat │ │ │ ├── mask_81_0.dat │ │ │ ├── mask_85_0.dat │ │ │ ├── mask_89_0.dat │ │ │ ├── mask_93_0.dat │ │ │ └── mask_97_0.dat │ │ ├── mask_1 │ │ │ ├── mask_101_1.dat │ │ │ ├── mask_105_1.dat │ │ │ ├── mask_109_1.dat │ │ │ ├── mask_113_1.dat │ │ │ ├── mask_117_1.dat │ │ │ ├── mask_121_1.dat │ │ │ ├── mask_125_1.dat │ │ │ ├── mask_129_1.dat │ │ │ ├── mask_133_1.dat │ │ │ ├── mask_137_1.dat │ │ │ ├── mask_141_1.dat │ │ │ ├── mask_145_1.dat │ │ │ ├── mask_149_1.dat │ │ │ ├── mask_153_1.dat │ │ │ ├── mask_157_1.dat │ │ │ ├── mask_161_1.dat │ │ │ ├── mask_165_1.dat │ │ │ ├── mask_169_1.dat │ │ │ ├── mask_173_1.dat │ │ │ ├── mask_177_1.dat │ │ │ ├── mask_21_1.dat │ │ │ ├── mask_25_1.dat │ │ │ ├── mask_29_1.dat │ │ │ ├── mask_33_1.dat │ │ │ ├── mask_37_1.dat │ │ │ ├── mask_41_1.dat │ │ │ ├── mask_45_1.dat │ │ │ ├── mask_49_1.dat │ │ │ ├── mask_53_1.dat │ │ │ ├── mask_57_1.dat │ │ │ ├── mask_61_1.dat │ │ │ ├── mask_65_1.dat │ │ │ ├── mask_69_1.dat │ │ │ ├── mask_73_1.dat │ │ │ ├── mask_77_1.dat │ │ │ ├── mask_81_1.dat │ │ │ ├── mask_85_1.dat │ │ │ ├── mask_89_1.dat │ │ │ ├── mask_93_1.dat │ │ │ └── mask_97_1.dat │ │ ├── mask_2 │ │ │ ├── mask_101_2.dat │ │ │ ├── mask_105_2.dat │ │ │ ├── mask_109_2.dat │ │ │ ├── mask_113_2.dat │ │ │ ├── mask_117_2.dat │ │ │ ├── mask_121_2.dat │ │ │ ├── mask_125_2.dat │ │ │ ├── mask_129_2.dat │ │ │ ├── mask_133_2.dat │ │ │ ├── mask_137_2.dat │ │ │ ├── mask_141_2.dat │ │ │ ├── mask_145_2.dat │ │ │ ├── mask_149_2.dat │ │ │ ├── mask_153_2.dat │ │ │ ├── mask_157_2.dat │ │ │ ├── mask_161_2.dat │ │ │ ├── mask_165_2.dat │ │ │ ├── mask_169_2.dat │ │ │ ├── mask_173_2.dat │ │ │ ├── mask_177_2.dat │ │ │ ├── mask_21_2.dat │ │ │ ├── mask_25_2.dat │ │ │ ├── mask_29_2.dat │ │ │ ├── mask_33_2.dat │ │ │ ├── mask_37_2.dat │ │ │ ├── mask_41_2.dat │ │ │ ├── mask_45_2.dat │ │ │ ├── mask_49_2.dat │ │ │ ├── mask_53_2.dat │ │ │ ├── mask_57_2.dat │ │ │ ├── mask_61_2.dat │ │ │ ├── mask_65_2.dat │ │ │ ├── mask_69_2.dat │ │ │ ├── mask_73_2.dat │ │ │ ├── mask_77_2.dat │ │ │ ├── mask_81_2.dat │ │ │ ├── mask_85_2.dat │ │ │ ├── mask_89_2.dat │ │ │ ├── mask_93_2.dat │ │ │ └── mask_97_2.dat │ │ ├── mask_3 │ │ │ ├── mask_101_3.dat │ │ │ ├── mask_105_3.dat │ │ │ ├── mask_109_3.dat │ │ │ ├── mask_113_3.dat │ │ │ ├── mask_117_3.dat │ │ │ ├── mask_121_3.dat │ │ │ ├── mask_125_3.dat │ │ │ ├── mask_129_3.dat │ │ │ ├── mask_133_3.dat │ │ │ ├── mask_137_3.dat │ │ │ ├── mask_141_3.dat │ │ │ ├── mask_145_3.dat │ │ │ ├── mask_149_3.dat │ │ │ ├── mask_153_3.dat │ │ │ ├── mask_157_3.dat │ │ │ ├── mask_161_3.dat │ │ │ ├── mask_165_3.dat │ │ │ ├── mask_169_3.dat │ │ │ ├── mask_173_3.dat │ │ │ ├── mask_177_3.dat │ │ │ ├── mask_21_3.dat │ │ │ ├── mask_25_3.dat │ │ │ ├── mask_29_3.dat │ │ │ ├── mask_33_3.dat │ │ │ ├── mask_37_3.dat │ │ │ ├── mask_41_3.dat │ │ │ ├── mask_45_3.dat │ │ │ ├── mask_49_3.dat │ │ │ ├── mask_53_3.dat │ │ │ ├── mask_57_3.dat │ │ │ ├── mask_61_3.dat │ │ │ ├── mask_65_3.dat │ │ │ ├── mask_69_3.dat │ │ │ ├── mask_73_3.dat │ │ │ ├── mask_77_3.dat │ │ │ ├── mask_81_3.dat │ │ │ ├── mask_85_3.dat │ │ │ ├── mask_89_3.dat │ │ │ ├── mask_93_3.dat │ │ │ └── mask_97_3.dat │ │ ├── mask_4 │ │ │ ├── mask_101_4.dat │ │ │ ├── mask_105_4.dat │ │ │ ├── mask_109_4.dat │ │ │ ├── mask_113_4.dat │ │ │ ├── mask_117_4.dat │ │ │ ├── mask_121_4.dat │ │ │ ├── mask_125_4.dat │ │ │ ├── mask_129_4.dat │ │ │ ├── mask_133_4.dat │ │ │ ├── mask_137_4.dat │ │ │ ├── mask_141_4.dat │ │ │ ├── mask_145_4.dat │ │ │ ├── mask_149_4.dat │ │ │ ├── mask_153_4.dat │ │ │ ├── mask_157_4.dat │ │ │ ├── mask_161_4.dat │ │ │ ├── mask_165_4.dat │ │ │ ├── mask_169_4.dat │ │ │ ├── mask_173_4.dat │ │ │ ├── mask_177_4.dat │ │ │ ├── mask_21_4.dat │ │ │ ├── mask_25_4.dat │ │ │ ├── mask_29_4.dat │ │ │ ├── mask_33_4.dat │ │ │ ├── mask_37_4.dat │ │ │ ├── mask_41_4.dat │ │ │ ├── mask_45_4.dat │ │ │ ├── mask_49_4.dat │ │ │ ├── mask_53_4.dat │ │ │ ├── mask_57_4.dat │ │ │ ├── mask_61_4.dat │ │ │ ├── mask_65_4.dat │ │ │ ├── mask_69_4.dat │ │ │ ├── mask_73_4.dat │ │ │ ├── mask_77_4.dat │ │ │ ├── mask_81_4.dat │ │ │ ├── mask_85_4.dat │ │ │ ├── mask_89_4.dat │ │ │ ├── mask_93_4.dat │ │ │ └── mask_97_4.dat │ │ ├── mask_5 │ │ │ ├── mask_101_5.dat │ │ │ ├── mask_105_5.dat │ │ │ ├── mask_109_5.dat │ │ │ ├── mask_113_5.dat │ │ │ ├── mask_117_5.dat │ │ │ ├── mask_121_5.dat │ │ │ ├── mask_125_5.dat │ │ │ ├── mask_129_5.dat │ │ │ ├── mask_133_5.dat │ │ │ ├── mask_137_5.dat │ │ │ ├── mask_141_5.dat │ │ │ ├── mask_145_5.dat │ │ │ ├── mask_149_5.dat │ │ │ ├── mask_153_5.dat │ │ │ ├── mask_157_5.dat │ │ │ ├── mask_161_5.dat │ │ │ ├── mask_165_5.dat │ │ │ ├── mask_169_5.dat │ │ │ ├── mask_173_5.dat │ │ │ ├── mask_177_5.dat │ │ │ ├── mask_21_5.dat │ │ │ ├── mask_25_5.dat │ │ │ ├── mask_29_5.dat │ │ │ ├── mask_33_5.dat │ │ │ ├── mask_37_5.dat │ │ │ ├── mask_41_5.dat │ │ │ ├── mask_45_5.dat │ │ │ ├── mask_49_5.dat │ │ │ ├── mask_53_5.dat │ │ │ ├── mask_57_5.dat │ │ │ ├── mask_61_5.dat │ │ │ ├── mask_65_5.dat │ │ │ ├── mask_69_5.dat │ │ │ ├── mask_73_5.dat │ │ │ ├── mask_77_5.dat │ │ │ ├── mask_81_5.dat │ │ │ ├── mask_85_5.dat │ │ │ ├── mask_89_5.dat │ │ │ ├── mask_93_5.dat │ │ │ └── mask_97_5.dat │ │ ├── mask_6 │ │ │ ├── mask_101_6.dat │ │ │ ├── mask_105_6.dat │ │ │ ├── mask_109_6.dat │ │ │ ├── mask_113_6.dat │ │ │ ├── mask_117_6.dat │ │ │ ├── mask_121_6.dat │ │ │ ├── mask_125_6.dat │ │ │ ├── mask_129_6.dat │ │ │ ├── mask_133_6.dat │ │ │ ├── mask_137_6.dat │ │ │ ├── mask_141_6.dat │ │ │ ├── mask_145_6.dat │ │ │ ├── mask_149_6.dat │ │ │ ├── mask_153_6.dat │ │ │ ├── mask_157_6.dat │ │ │ ├── mask_161_6.dat │ │ │ ├── mask_165_6.dat │ │ │ ├── mask_169_6.dat │ │ │ ├── mask_173_6.dat │ │ │ ├── mask_177_6.dat │ │ │ ├── mask_21_6.dat │ │ │ ├── mask_25_6.dat │ │ │ ├── mask_29_6.dat │ │ │ ├── mask_33_6.dat │ │ │ ├── mask_37_6.dat │ │ │ ├── mask_41_6.dat │ │ │ ├── mask_45_6.dat │ │ │ ├── mask_49_6.dat │ │ │ ├── mask_53_6.dat │ │ │ ├── mask_57_6.dat │ │ │ ├── mask_61_6.dat │ │ │ ├── mask_65_6.dat │ │ │ ├── mask_69_6.dat │ │ │ ├── mask_73_6.dat │ │ │ ├── mask_77_6.dat │ │ │ ├── mask_81_6.dat │ │ │ ├── mask_85_6.dat │ │ │ ├── mask_89_6.dat │ │ │ ├── mask_93_6.dat │ │ │ └── mask_97_6.dat │ │ └── mask_7 │ │ │ ├── mask_101_7.dat │ │ │ ├── mask_105_7.dat │ │ │ ├── mask_109_7.dat │ │ │ ├── mask_113_7.dat │ │ │ ├── mask_117_7.dat │ │ │ ├── mask_121_7.dat │ │ │ ├── mask_125_7.dat │ │ │ ├── mask_129_7.dat │ │ │ ├── mask_133_7.dat │ │ │ ├── mask_137_7.dat │ │ │ ├── mask_141_7.dat │ │ │ ├── mask_145_7.dat │ │ │ ├── mask_149_7.dat │ │ │ ├── mask_153_7.dat │ │ │ ├── mask_157_7.dat │ │ │ ├── mask_161_7.dat │ │ │ ├── mask_165_7.dat │ │ │ ├── mask_169_7.dat │ │ │ ├── mask_173_7.dat │ │ │ ├── mask_177_7.dat │ │ │ ├── mask_21_7.dat │ │ │ ├── mask_25_7.dat │ │ │ ├── mask_29_7.dat │ │ │ ├── mask_33_7.dat │ │ │ ├── mask_37_7.dat │ │ │ ├── mask_41_7.dat │ │ │ ├── mask_45_7.dat │ │ │ ├── mask_49_7.dat │ │ │ ├── mask_53_7.dat │ │ │ ├── mask_57_7.dat │ │ │ ├── mask_61_7.dat │ │ │ ├── mask_65_7.dat │ │ │ ├── mask_69_7.dat │ │ │ ├── mask_73_7.dat │ │ │ ├── mask_77_7.dat │ │ │ ├── mask_81_7.dat │ │ │ ├── mask_85_7.dat │ │ │ ├── mask_89_7.dat │ │ │ ├── mask_93_7.dat │ │ │ └── mask_97_7.dat │ ├── index.php │ ├── phpqrcode.php │ ├── qrbitstream.php │ ├── qrconfig.php │ ├── qrconst.php │ ├── qrencode.php │ ├── qrimage.php │ ├── qrinput.php │ ├── qrlib.php │ ├── qrmask.php │ ├── qrrscode.php │ ├── qrspec.php │ ├── qrsplit.php │ ├── qrtools.php │ └── tools │ │ ├── merge.bat │ │ ├── merge.php │ │ ├── merge.sh │ │ ├── merged_config.php │ │ └── merged_header.php ├── prototype.js ├── pubsubhubbub │ ├── README.txt │ ├── publisher.php │ └── subscriber.php ├── scriptaculous │ ├── controls.js │ ├── effects.js │ └── scriptaculous.js ├── timezones.txt └── xsl_mop-up.js ├── locale ├── .htaccess ├── ar_SA │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ca_CA │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── cs_CZ │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── da_DA │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── de_DE │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── el_GR │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── es_ES │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── es_LA │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── fi_FI │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── fr_FR │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── hu_HU │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── it_IT │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ja_JP │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ko_KR │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── lv_LV │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── nb_NO │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── nl_NL │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── pl_PL │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── pt_BR │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── pt_PT │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ru_RU │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── sv_SE │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── tr_TR │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── zh_CN │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po └── zh_TW │ └── LC_MESSAGES │ ├── messages.mo │ └── messages.po ├── lock ├── .empty └── .htaccess ├── messages.pot ├── opml.php ├── plugins ├── af_comics │ ├── af_comics_template.php │ ├── filter_base.php │ ├── filters │ │ ├── af_comics_cad.php │ │ ├── af_comics_comicpress.php │ │ ├── af_comics_darklegacy.php │ │ ├── af_comics_dilbert.php │ │ ├── af_comics_explosm.php │ │ ├── af_comics_gocomics.php │ │ ├── af_comics_pa.php │ │ ├── af_comics_tfd.php │ │ └── af_comics_twp.php │ └── init.php ├── af_elreg │ └── init.php ├── af_fsckportal │ └── init.php ├── af_habr │ └── init.php ├── af_natgeo │ └── init.php ├── af_redditimgur │ └── init.php ├── af_sciam │ └── init.php ├── af_tumblr_1280 │ └── init.php ├── af_unburn │ └── init.php ├── af_zz_imgsetsizes │ └── init.php ├── auth_internal │ └── init.php ├── auth_remote │ └── init.php ├── bookmarklets │ └── init.php ├── cache_starred_images │ └── init.php ├── close_button │ ├── button.png │ └── init.php ├── embed_original │ ├── button.png │ ├── init.css │ ├── init.js │ └── init.php ├── googlereaderimport │ ├── init.js │ └── init.php ├── googlereaderkeys │ └── init.php ├── import_export │ ├── import_export.js │ └── init.php ├── index.html ├── instances │ ├── init.php │ └── instances.js ├── mail │ ├── init.php │ ├── mail.js │ └── mail.png ├── mailto │ ├── init.js │ ├── init.php │ └── mail.png ├── mark_button │ └── init.php ├── no_iframes │ └── init.php ├── no_title_counters │ ├── init.js │ └── init.php ├── no_url_hashes │ ├── init.js │ └── init.php ├── note │ ├── init.php │ ├── note.js │ └── note.png ├── nsfw │ ├── init.js │ └── init.php ├── search_sphinx │ ├── init.php │ └── sphinxapi.php ├── share │ ├── init.php │ ├── notshared.png │ ├── share.js │ ├── share.png │ └── share_prefs.js ├── shorten_expanded │ ├── init.css │ ├── init.js │ └── init.php ├── swap_jk │ └── init.php ├── updater │ ├── init.php │ └── updater.js └── vf_shared │ ├── init.php │ └── share.png ├── prefs.php ├── public.php ├── register.php ├── sandstorm ├── Makefile └── sandstorm-httpGet.c++ ├── schema ├── .htaccess ├── ttrss_schema_mysql.sql ├── ttrss_schema_pgsql.sql └── versions │ ├── mysql │ ├── 10.sql │ ├── 100.sql │ ├── 101.sql │ ├── 102.sql │ ├── 103.sql │ ├── 104.sql │ ├── 105.sql │ ├── 106.sql │ ├── 107.sql │ ├── 108.sql │ ├── 109.sql │ ├── 11.sql │ ├── 110.sql │ ├── 111.sql │ ├── 112.sql │ ├── 113.sql │ ├── 114.sql │ ├── 115.sql │ ├── 116.sql │ ├── 117.sql │ ├── 118.sql │ ├── 119.sql │ ├── 12.sql │ ├── 120.sql │ ├── 121.sql │ ├── 122.sql │ ├── 123.sql │ ├── 124.sql │ ├── 125.sql │ ├── 126.sql │ ├── 13.sql │ ├── 14.sql │ ├── 15.sql │ ├── 16.sql │ ├── 17.sql │ ├── 18.sql │ ├── 19.sql │ ├── 20.sql │ ├── 21.sql │ ├── 22.sql │ ├── 23.sql │ ├── 24.sql │ ├── 25.sql │ ├── 26.sql │ ├── 27.sql │ ├── 28.sql │ ├── 29.sql │ ├── 3.sql │ ├── 30.sql │ ├── 31.sql │ ├── 32.sql │ ├── 33.sql │ ├── 34.sql │ ├── 35.sql │ ├── 36.sql │ ├── 37.sql │ ├── 38.sql │ ├── 39.sql │ ├── 4.sql │ ├── 40.sql │ ├── 41.sql │ ├── 42.sql │ ├── 43.sql │ ├── 44.sql │ ├── 45.sql │ ├── 46.sql │ ├── 47.sql │ ├── 48.sql │ ├── 49.sql │ ├── 5.sql │ ├── 50.sql │ ├── 51.sql │ ├── 52.sql │ ├── 53.sql │ ├── 54.sql │ ├── 55.sql │ ├── 56.sql │ ├── 57.sql │ ├── 58.sql │ ├── 59.sql │ ├── 6.sql │ ├── 60.sql │ ├── 61.sql │ ├── 62.sql │ ├── 63.sql │ ├── 64.sql │ ├── 65.sql │ ├── 66.sql │ ├── 67.sql │ ├── 68.sql │ ├── 69.sql │ ├── 7.sql │ ├── 70.sql │ ├── 71.sql │ ├── 72.sql │ ├── 73.sql │ ├── 74.sql │ ├── 75.sql │ ├── 76.sql │ ├── 77.sql │ ├── 78.sql │ ├── 79.sql │ ├── 8.sql │ ├── 80.sql │ ├── 81.sql │ ├── 82.sql │ ├── 83.sql │ ├── 84.sql │ ├── 85.sql │ ├── 86.sql │ ├── 87.sql │ ├── 88.sql │ ├── 89.sql │ ├── 9.sql │ ├── 90.sql │ ├── 91.sql │ ├── 92.sql │ ├── 93.sql │ ├── 94.sql │ ├── 95.sql │ ├── 96.sql │ ├── 97.sql │ ├── 98.sql │ └── 99.sql │ └── pgsql │ ├── 10.sql │ ├── 100.sql │ ├── 101.sql │ ├── 102.sql │ ├── 103.sql │ ├── 104.sql │ ├── 105.sql │ ├── 106.sql │ ├── 107.sql │ ├── 108.sql │ ├── 109.sql │ ├── 11.sql │ ├── 110.sql │ ├── 111.sql │ ├── 112.sql │ ├── 113.sql │ ├── 114.sql │ ├── 115.sql │ ├── 116.sql │ ├── 117.sql │ ├── 118.sql │ ├── 119.sql │ ├── 12.sql │ ├── 120.sql │ ├── 121.sql │ ├── 122.sql │ ├── 123.sql │ ├── 124.sql │ ├── 125.sql │ ├── 126.sql │ ├── 13.sql │ ├── 14.sql │ ├── 15.sql │ ├── 16.sql │ ├── 17.sql │ ├── 18.sql │ ├── 19.sql │ ├── 20.sql │ ├── 21.sql │ ├── 22.sql │ ├── 23.sql │ ├── 24.sql │ ├── 25.sql │ ├── 26.sql │ ├── 27.sql │ ├── 28.sql │ ├── 29.sql │ ├── 3.sql │ ├── 30.sql │ ├── 31.sql │ ├── 32.sql │ ├── 33.sql │ ├── 34.sql │ ├── 35.sql │ ├── 36.sql │ ├── 37.sql │ ├── 38.sql │ ├── 39.sql │ ├── 4.sql │ ├── 40.sql │ ├── 41.sql │ ├── 42.sql │ ├── 43.sql │ ├── 44.sql │ ├── 45.sql │ ├── 46.sql │ ├── 47.sql │ ├── 48.sql │ ├── 49.sql │ ├── 5.sql │ ├── 50.sql │ ├── 51.sql │ ├── 52.sql │ ├── 53.sql │ ├── 54.sql │ ├── 55.sql │ ├── 56.sql │ ├── 57.sql │ ├── 58.sql │ ├── 59.sql │ ├── 6.sql │ ├── 60.sql │ ├── 61.sql │ ├── 62.sql │ ├── 63.sql │ ├── 64.sql │ ├── 65.sql │ ├── 66.sql │ ├── 67.sql │ ├── 68.sql │ ├── 69.sql │ ├── 7.sql │ ├── 70.sql │ ├── 71.sql │ ├── 72.sql │ ├── 73.sql │ ├── 74.sql │ ├── 75.sql │ ├── 76.sql │ ├── 77.sql │ ├── 78.sql │ ├── 79.sql │ ├── 8.sql │ ├── 80.sql │ ├── 81.sql │ ├── 82.sql │ ├── 83.sql │ ├── 84.sql │ ├── 85.sql │ ├── 86.sql │ ├── 87.sql │ ├── 88.sql │ ├── 89.sql │ ├── 9.sql │ ├── 90.sql │ ├── 91.sql │ ├── 92.sql │ ├── 93.sql │ ├── 94.sql │ ├── 95.sql │ ├── 96.sql │ ├── 97.sql │ ├── 98.sql │ └── 99.sql ├── templates ├── .htaccess ├── digest_template.txt ├── digest_template_html.txt ├── email_article_template.txt ├── generated_feed.txt ├── resetpass_link_template.txt └── resetpass_template.txt ├── themes ├── .empty ├── default.css └── night.css ├── update.php ├── update_daemon2.php └── utils ├── .htaccess ├── extract-i18n-js.pl ├── localized_schema.txt ├── regen_config_checks.sh └── update-translations.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | *.spk 2 | dockerenv 3 | .git 4 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | AddType image/svg+xml svg 2 | AddType image/svg+xml svgz 3 | 4 | -------------------------------------------------------------------------------- /.sandstorm/app-graphics/tinytinyrss-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/app-graphics/tinytinyrss-24.png -------------------------------------------------------------------------------- /.sandstorm/app-graphics/tinytinyrss-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/app-graphics/tinytinyrss-48.png -------------------------------------------------------------------------------- /.sandstorm/mysql/app/db.opt: -------------------------------------------------------------------------------- 1 | default-character-set=latin1 2 | default-collation=latin1_swedish_ci 3 | -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_access_keys.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_access_keys.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_access_keys.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_access_keys.ibd -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_enclosures.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_enclosures.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_enclosures.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_enclosures.ibd -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_entries.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_entries.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_entries.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_entries.ibd -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_error_log.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_error_log.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_error_log.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_error_log.ibd -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_feeds.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_feeds.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_feeds.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_feeds.ibd -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_filters2.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_filters2.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_filters2.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_filters2.ibd -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_labels2.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_labels2.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_labels2.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_labels2.ibd -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_prefs.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_prefs.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_prefs.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_prefs.ibd -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_prefs_types.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_prefs_types.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_prefs_types.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_prefs_types.ibd -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_sessions.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_sessions.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_sessions.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_sessions.ibd -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_tags.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_tags.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_tags.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_tags.ibd -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_user_prefs.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_user_prefs.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_user_prefs.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_user_prefs.ibd -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_users.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_users.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_users.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_users.ibd -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_version.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_version.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/app/ttrss_version.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/app/ttrss_version.ibd -------------------------------------------------------------------------------- /.sandstorm/mysql/ib_logfile0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/ib_logfile0 -------------------------------------------------------------------------------- /.sandstorm/mysql/ib_logfile1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/ib_logfile1 -------------------------------------------------------------------------------- /.sandstorm/mysql/ibdata1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/ibdata1 -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/columns_priv.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/columns_priv.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/columns_priv.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/columns_priv.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/columns_priv.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/columns_priv.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/db.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/db.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/db.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/db.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/db.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/db.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/event.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/event.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/event.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/event.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/event.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/event.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/func.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/func.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/func.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/func.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/func.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/func.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/general_log.CSM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/general_log.CSM -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/general_log.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/general_log.CSV -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/general_log.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/general_log.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/help_category.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/help_category.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/help_category.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/help_category.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/help_category.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/help_category.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/help_keyword.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/help_keyword.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/help_keyword.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/help_keyword.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/help_keyword.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/help_keyword.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/help_relation.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/help_relation.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/help_relation.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/help_relation.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/help_relation.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/help_relation.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/help_topic.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/help_topic.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/help_topic.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/help_topic.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/help_topic.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/help_topic.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/host.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/host.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/host.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/host.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/host.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/host.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/plugin.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/plugin.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/plugin.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/plugin.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/plugin.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/plugin.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/proc.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/proc.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/proc.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/proc.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/proc.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/proc.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/procs_priv.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/procs_priv.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/procs_priv.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/procs_priv.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/procs_priv.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/procs_priv.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/proxies_priv.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/proxies_priv.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/proxies_priv.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/proxies_priv.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/proxies_priv.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/proxies_priv.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/servers.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/servers.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/servers.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/servers.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/servers.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/servers.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/slow_log.CSM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/slow_log.CSM -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/slow_log.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/slow_log.CSV -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/slow_log.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/slow_log.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/tables_priv.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/tables_priv.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/tables_priv.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/tables_priv.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/tables_priv.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/tables_priv.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/time_zone.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/time_zone.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/time_zone.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/time_zone.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/time_zone.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/time_zone.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/time_zone_name.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/time_zone_name.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/time_zone_name.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/time_zone_name.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/time_zone_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/time_zone_name.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/user.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/user.MYD -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/user.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/user.MYI -------------------------------------------------------------------------------- /.sandstorm/mysql/mysql/user.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/mysql/mysql/user.frm -------------------------------------------------------------------------------- /.sandstorm/mysql/performance_schema/db.opt: -------------------------------------------------------------------------------- 1 | default-character-set=utf8 2 | default-collation=utf8_general_ci 3 | -------------------------------------------------------------------------------- /.sandstorm/sandstorm-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/.sandstorm/sandstorm-screenshot.png -------------------------------------------------------------------------------- /.sandstorm/stack: -------------------------------------------------------------------------------- 1 | lemp 2 | -------------------------------------------------------------------------------- /cache/.htaccess: -------------------------------------------------------------------------------- 1 | Order deny,allow 2 | Deny from all 3 | -------------------------------------------------------------------------------- /cache/export/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/cache/export/.empty -------------------------------------------------------------------------------- /cache/images/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/cache/images/.empty -------------------------------------------------------------------------------- /cache/js/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/cache/js/.empty -------------------------------------------------------------------------------- /cache/simplepie/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/cache/simplepie/.empty -------------------------------------------------------------------------------- /cache/upload/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/cache/upload/.empty -------------------------------------------------------------------------------- /classes/.htaccess: -------------------------------------------------------------------------------- 1 | Order deny,allow 2 | Deny from all 3 | -------------------------------------------------------------------------------- /classes/iauthmodule.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /classes/ihandler.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /css/layout.css: -------------------------------------------------------------------------------- 1 | html, body#ttrssMain, body#ttrssPrefs, #main { 2 | width: 100%; 3 | height: 100%; 4 | border: 0; 5 | padding: 0; 6 | margin: 0; 7 | } 8 | -------------------------------------------------------------------------------- /images/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/alert.png -------------------------------------------------------------------------------- /images/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/archive.png -------------------------------------------------------------------------------- /images/blank_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/blank_icon.gif -------------------------------------------------------------------------------- /images/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/collapse.png -------------------------------------------------------------------------------- /images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/cross.png -------------------------------------------------------------------------------- /images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/error.png -------------------------------------------------------------------------------- /images/favicon-72px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/favicon-72px.png -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/favicon.png -------------------------------------------------------------------------------- /images/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/feed.png -------------------------------------------------------------------------------- /images/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/filter.png -------------------------------------------------------------------------------- /images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/folder.png -------------------------------------------------------------------------------- /images/fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/fresh.png -------------------------------------------------------------------------------- /images/indicator_tiny.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/indicator_tiny.gif -------------------------------------------------------------------------------- /images/indicator_white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/indicator_white.gif -------------------------------------------------------------------------------- /images/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/information.png -------------------------------------------------------------------------------- /images/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/label.png -------------------------------------------------------------------------------- /images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/logo_small.png -------------------------------------------------------------------------------- /images/logo_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/logo_wide.png -------------------------------------------------------------------------------- /images/mark_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/mark_set.png -------------------------------------------------------------------------------- /images/mark_unset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/mark_unset.png -------------------------------------------------------------------------------- /images/new_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/new_version.png -------------------------------------------------------------------------------- /images/page_white_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/page_white_go.png -------------------------------------------------------------------------------- /images/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/plugin.png -------------------------------------------------------------------------------- /images/plugin_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/plugin_disabled.png -------------------------------------------------------------------------------- /images/pub_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/pub_set.png -------------------------------------------------------------------------------- /images/pub_unset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/pub_unset.png -------------------------------------------------------------------------------- /images/score_half_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/score_half_high.png -------------------------------------------------------------------------------- /images/score_half_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/score_half_low.png -------------------------------------------------------------------------------- /images/score_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/score_high.png -------------------------------------------------------------------------------- /images/score_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/score_low.png -------------------------------------------------------------------------------- /images/score_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/score_neutral.png -------------------------------------------------------------------------------- /images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/star.png -------------------------------------------------------------------------------- /images/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/tag.png -------------------------------------------------------------------------------- /images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/tick.png -------------------------------------------------------------------------------- /images/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/time.png -------------------------------------------------------------------------------- /images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/toolbar.png -------------------------------------------------------------------------------- /images/treeExpandImages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/treeExpandImages.png -------------------------------------------------------------------------------- /images/untick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/untick.png -------------------------------------------------------------------------------- /images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/images/user.png -------------------------------------------------------------------------------- /js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/js/index.html -------------------------------------------------------------------------------- /lib/button/musicplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/button/musicplayer.swf -------------------------------------------------------------------------------- /lib/button/musicplayer_f6.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/button/musicplayer_f6.swf -------------------------------------------------------------------------------- /lib/dijit/_base/scroll.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/_base/scroll",["dojo/window","../main"],function(_1,_2){_2.scrollIntoView=function(_3,_4){_1.scrollIntoView(_3,_4);};}); -------------------------------------------------------------------------------- /lib/dijit/_base/sniff.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/_base/sniff",["dojo/uacss"],function(){}); -------------------------------------------------------------------------------- /lib/dijit/_base/typematic.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/_base/typematic",["../typematic"],function(){}); -------------------------------------------------------------------------------- /lib/dijit/_base/window.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/_base/window",["dojo/window","../main"],function(_1,_2){_2.getDocumentWindow=function(_3){return _1.get(_3);};}); -------------------------------------------------------------------------------- /lib/dijit/form/nls/ar/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/ar/ComboBox",({previousMessage:"الاختيارات السابقة",nextMessage:"مزيد من الاختيارات"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/ar/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/ar/Textarea",({iframeEditTitle:"مساحة التحرير",iframeFocusTitle:"اطار مساحة التحرير"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/az/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/az/ComboBox",({"previousMessage":"Əvvəlki variantlar","nextMessage":"Başqa variantlar"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/az/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/az/Textarea",({"iframeEditTitle":"Redaktə sahəsi","iframeFocusTitle":"Redaktə sahəsi çərçivəsi"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/ca/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/ca/ComboBox",({previousMessage:"Opcions anteriors",nextMessage:"Més opcions"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/ca/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/ca/Textarea",({iframeEditTitle:"àrea d'edició",iframeFocusTitle:"Marc de l'àrea d'edició"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/cs/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/cs/ComboBox",({previousMessage:"Předchozí volby",nextMessage:"Další volby"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/cs/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/cs/Textarea",({iframeEditTitle:"oblast úprav",iframeFocusTitle:"rámec oblasti úprav"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/da/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/da/ComboBox",({previousMessage:"Forrige valg",nextMessage:"Flere valg"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/da/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/da/Textarea",({iframeEditTitle:"redigeringsområde",iframeFocusTitle:"ramme om redigeringsområde"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/de/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/de/ComboBox",({previousMessage:"Vorherige Auswahl",nextMessage:"Weitere Auswahlmöglichkeiten"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/de/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/de/Textarea",({iframeEditTitle:"Editierbereich",iframeFocusTitle:"Rahmen für Editierbereich"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/el/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/el/ComboBox",({previousMessage:"Προηγούμενες επιλογές",nextMessage:"Περισσότερες επιλογές"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/el/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/el/Textarea",({iframeEditTitle:"περιοχή επεξεργασίας",iframeFocusTitle:"πλαίσιο περιοχής επεξεργασίας"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/es/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/es/ComboBox",({previousMessage:"Opciones anteriores",nextMessage:"Más opciones"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/es/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/es/Textarea",({iframeEditTitle:"área de edición",iframeFocusTitle:"marco del área de edición"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/fi/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/fi/ComboBox",({previousMessage:"Edelliset valinnat",nextMessage:"Lisää valintoja"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/fi/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/fi/Textarea",({iframeEditTitle:"muokkausalue",iframeFocusTitle:"muokkausalueen kehys"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/fr/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/fr/ComboBox",({previousMessage:"Choix précédents",nextMessage:"Plus de choix"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/fr/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/fr/Textarea",({iframeEditTitle:"zone d'édition",iframeFocusTitle:"cadre de la zone d'édition"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/he/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/he/ComboBox",({previousMessage:"האפשרויות הקודמות",nextMessage:"אפשרויות נוספות"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/he/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/he/Textarea",({iframeEditTitle:"אזור עריכה",iframeFocusTitle:"מסגרת אזור עריכה"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/hr/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/hr/ComboBox",({previousMessage:"Prethodni izbori",nextMessage:"Više izbora"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/hr/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/hr/Textarea",({iframeEditTitle:"područje uređivanja",iframeFocusTitle:"okvir područja uređivanja"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/hu/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/hu/ComboBox",({previousMessage:"Előző menüpontok",nextMessage:"További menüpontok"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/hu/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/hu/Textarea",({iframeEditTitle:"szerkesztési terület",iframeFocusTitle:"szerkesztési terület keret"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/it/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/it/ComboBox",({previousMessage:"Scelte precedenti",nextMessage:"Scelte successive"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/it/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/it/Textarea",({iframeEditTitle:"modifica area",iframeFocusTitle:"modifica frame area"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/ja/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/ja/ComboBox",({previousMessage:"以前の選択項目",nextMessage:"追加の選択項目"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/ja/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/ja/Textarea",({iframeEditTitle:"編集域",iframeFocusTitle:"編集域フレーム"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/ja/validate.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/ja/validate",({invalidMessage:"入力した値は無効です。",missingMessage:"この値は必須です。",rangeMessage:"この値は範囲外です。"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/kk/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/kk/ComboBox",({previousMessage:"Алдыңғы нұсқалар",nextMessage:"Басқа нұсқалар"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/kk/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/kk/Textarea",({iframeEditTitle:"өңдеу аумағы",iframeFocusTitle:"өңдеу аумағының жақтауы"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/ko/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/ko/ComboBox",({previousMessage:"이전 선택사항",nextMessage:"기타 선택사항"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/ko/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/ko/Textarea",({iframeEditTitle:"편집 영역",iframeFocusTitle:"편집 영역 프레임"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/nb/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/nb/ComboBox",({previousMessage:"Tidligere valg",nextMessage:"Flere valg"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/nb/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/nb/Textarea",({iframeEditTitle:"redigeringsområde",iframeFocusTitle:"ramme for redigeringsområde"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/nl/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/nl/ComboBox",({previousMessage:"Eerdere opties",nextMessage:"Meer opties"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/nl/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/nl/Textarea",({iframeEditTitle:"veld bewerken",iframeFocusTitle:"veldkader bewerken"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/pl/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/pl/ComboBox",({previousMessage:"Poprzednie wybory",nextMessage:"Więcej wyborów"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/pl/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/pl/Textarea",({iframeEditTitle:"edycja obszaru",iframeFocusTitle:"edycja ramki obszaru"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/pt-pt/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/pt-pt/ComboBox",({previousMessage:"Opções anteriores",nextMessage:"Mais opções"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/pt-pt/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/pt-pt/Textarea",({iframeEditTitle:"área de edição",iframeFocusTitle:"painel da área de edição"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/pt/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/pt/ComboBox",({previousMessage:"Opções anteriores",nextMessage:"Mais opções"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/pt/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/pt/Textarea",({iframeEditTitle:"editar área",iframeFocusTitle:"editar quadro da área"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/ro/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/ro/ComboBox",({previousMessage:"Alegeri anterioare",nextMessage:"Mai multe alegeri"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/ro/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/ro/Textarea",({iframeEditTitle:"zonă de editare",iframeFocusTitle:"cadru zonă de editare"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/ru/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/ru/ComboBox",({previousMessage:"Предыдущие варианты",nextMessage:"Следующие варианты"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/ru/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/ru/Textarea",({iframeEditTitle:"область редактирования",iframeFocusTitle:"фрейм области редактирования"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/sk/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/sk/ComboBox",({previousMessage:"Predchádzajúce možnosti",nextMessage:"Viac možností"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/sk/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/sk/Textarea",({iframeEditTitle:"upraviť oblasť",iframeFocusTitle:"upraviť rámec oblasti"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/sl/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/sl/ComboBox",({previousMessage:"Prejšnje izbire",nextMessage:"Dodatne izbire"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/sl/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/sl/Textarea",({iframeEditTitle:"urejevalno področje",iframeFocusTitle:"okvir urejevalnega področja"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/sv/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/sv/ComboBox",({previousMessage:"Tidigare val",nextMessage:"Fler val"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/sv/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/sv/Textarea",({iframeEditTitle:"redigeringsområde",iframeFocusTitle:"redigeringsområdesram"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/th/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/th/ComboBox",({previousMessage:"การเลือกก่อนหน้า",nextMessage:"การเลือกเพิ่มเติม"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/th/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/th/Textarea",({iframeEditTitle:"พื้นที่แก้ไข",iframeFocusTitle:"กรอบพื้นที่แก้ไข"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/tr/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/tr/ComboBox",({previousMessage:"Önceki seçenekler",nextMessage:"Diğer seçenekler"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/tr/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/tr/Textarea",({iframeEditTitle:"düzenleme alanı",iframeFocusTitle:"düzenleme alanı çerçevesi"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/zh-tw/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/zh-tw/ComboBox",({previousMessage:"前一個選擇項",nextMessage:"其他選擇項"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/zh-tw/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/zh-tw/Textarea",({iframeEditTitle:"編輯區",iframeFocusTitle:"編輯區框"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/zh-tw/validate.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/zh-tw/validate",({invalidMessage:"輸入的值無效。",missingMessage:"必須提供此值。",rangeMessage:"此值超出範圍。"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/zh/ComboBox.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/zh/ComboBox",({previousMessage:"先前选项",nextMessage:"更多选项"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/zh/Textarea.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/zh/Textarea",({iframeEditTitle:"编辑区域",iframeFocusTitle:"编辑区域框"})); -------------------------------------------------------------------------------- /lib/dijit/form/nls/zh/validate.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/form/nls/zh/validate",({invalidMessage:"输入的值无效。",missingMessage:"该值是必需的。",rangeMessage:"此值超出范围。"})); -------------------------------------------------------------------------------- /lib/dijit/main.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/main",["dojo/_base/kernel"],function(_1){return _1.dijit;}); -------------------------------------------------------------------------------- /lib/dijit/nls/ar/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/ar/common",({buttonOk:"حسنا",buttonCancel:"الغاء",buttonSave:"حفظ",itemClose:"اغلاق"})); -------------------------------------------------------------------------------- /lib/dijit/nls/ar/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/ar/loading",({loadingState:"جاري التحميل...",errorState:"عفوا، حدث خطأ"})); -------------------------------------------------------------------------------- /lib/dijit/nls/az/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/az/common",({"buttonOk":"Ok","buttonCancel":"Ləğv et","buttonSave":"Saxla","itemClose":"Bağla"})); -------------------------------------------------------------------------------- /lib/dijit/nls/az/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/az/loading",({"loadingState":"Yüklənir...","errorState":"Problem yarandı"})); -------------------------------------------------------------------------------- /lib/dijit/nls/ca/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/ca/common",({buttonOk:"D'acord",buttonCancel:"Cancel·la",buttonSave:"Desa",itemClose:"Tanca"})); -------------------------------------------------------------------------------- /lib/dijit/nls/ca/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/ca/loading",({loadingState:"S'està carregant...",errorState:"Ens sap greu. S'ha produït un error."})); -------------------------------------------------------------------------------- /lib/dijit/nls/cs/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/cs/common",({buttonOk:"OK",buttonCancel:"Storno",buttonSave:"Uložit",itemClose:"Zavřít"})); -------------------------------------------------------------------------------- /lib/dijit/nls/cs/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/cs/loading",({loadingState:"Probíhá načítání...",errorState:"Omlouváme se, došlo k chybě"})); -------------------------------------------------------------------------------- /lib/dijit/nls/da/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/da/common",({buttonOk:"OK",buttonCancel:"Annullér",buttonSave:"Gem",itemClose:"Luk"})); -------------------------------------------------------------------------------- /lib/dijit/nls/da/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/da/loading",({loadingState:"Indlæser...",errorState:"Der er opstået en fejl"})); -------------------------------------------------------------------------------- /lib/dijit/nls/de/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/de/common",({buttonOk:"OK",buttonCancel:"Abbrechen",buttonSave:"Speichern",itemClose:"Schließen"})); -------------------------------------------------------------------------------- /lib/dijit/nls/de/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/de/loading",({loadingState:"Wird geladen...",errorState:"Es ist ein Fehler aufgetreten."})); -------------------------------------------------------------------------------- /lib/dijit/nls/el/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/el/common",({buttonOk:"ΟΚ",buttonCancel:"Ακύρωση",buttonSave:"Αποθήκευση",itemClose:"Κλείσιμο"})); -------------------------------------------------------------------------------- /lib/dijit/nls/el/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/el/loading",({loadingState:"Φόρτωση...",errorState:"Σας ζητούμε συγνώμη, παρουσιάστηκε σφάλμα"})); -------------------------------------------------------------------------------- /lib/dijit/nls/es/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/es/common",({buttonOk:"Aceptar",buttonCancel:"Cancelar",buttonSave:"Guardar",itemClose:"Cerrar"})); -------------------------------------------------------------------------------- /lib/dijit/nls/es/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/es/loading",({loadingState:"Cargando...",errorState:"Lo siento, se ha producido un error"})); -------------------------------------------------------------------------------- /lib/dijit/nls/fi/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/fi/common",({buttonOk:"OK",buttonCancel:"Peruuta",buttonSave:"Tallenna",itemClose:"Sulje"})); -------------------------------------------------------------------------------- /lib/dijit/nls/fi/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/fi/loading",({loadingState:"Lataus on meneillään...",errorState:"On ilmennyt virhe."})); -------------------------------------------------------------------------------- /lib/dijit/nls/fr/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/fr/common",({buttonOk:"OK",buttonCancel:"Annuler",buttonSave:"Enregistrer",itemClose:"Fermer"})); -------------------------------------------------------------------------------- /lib/dijit/nls/fr/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/fr/loading",({loadingState:"Chargement...",errorState:"Une erreur est survenue"})); -------------------------------------------------------------------------------- /lib/dijit/nls/he/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/he/common",({buttonOk:"אישור",buttonCancel:"ביטול",buttonSave:"שמירה",itemClose:"סגירה"})); -------------------------------------------------------------------------------- /lib/dijit/nls/he/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/he/loading",({loadingState:"טעינה...",errorState:"אירעה שגיאה"})); -------------------------------------------------------------------------------- /lib/dijit/nls/hr/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/hr/common",({buttonOk:"OK",buttonCancel:"Opoziv",buttonSave:"Spremi",itemClose:"Zatvori"})); -------------------------------------------------------------------------------- /lib/dijit/nls/hr/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/hr/loading",({loadingState:"Učitavanje...",errorState:"Žao nam je, došlo je do greške"})); -------------------------------------------------------------------------------- /lib/dijit/nls/hu/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/hu/common",({buttonOk:"OK",buttonCancel:"Mégse",buttonSave:"Mentés",itemClose:"Bezárás"})); -------------------------------------------------------------------------------- /lib/dijit/nls/hu/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/hu/loading",({loadingState:"Betöltés...",errorState:"Sajnálom, hiba történt"})); -------------------------------------------------------------------------------- /lib/dijit/nls/it/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/it/common",({buttonOk:"Ok",buttonCancel:"Annulla",buttonSave:"Salva",itemClose:"Chiudi"})); -------------------------------------------------------------------------------- /lib/dijit/nls/it/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/it/loading",({loadingState:"Caricamento in corso...",errorState:"Si è verificato un errore"})); -------------------------------------------------------------------------------- /lib/dijit/nls/ja/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/ja/common",({buttonOk:"OK",buttonCancel:"キャンセル",buttonSave:"保存",itemClose:"閉じる"})); -------------------------------------------------------------------------------- /lib/dijit/nls/ja/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/ja/loading",({loadingState:"ロード中...",errorState:"エラーが発生しました。"})); -------------------------------------------------------------------------------- /lib/dijit/nls/kk/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/kk/common",({buttonOk:"OK",buttonCancel:"Болдырмау",buttonSave:"Сақтау",itemClose:"Жабу"})); -------------------------------------------------------------------------------- /lib/dijit/nls/kk/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/kk/loading",({loadingState:"Қотарылуда...",errorState:"Кешіріңіз, қате орын алды"})); -------------------------------------------------------------------------------- /lib/dijit/nls/ko/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/ko/common",({buttonOk:"확인",buttonCancel:"취소",buttonSave:"저장",itemClose:"닫기"})); -------------------------------------------------------------------------------- /lib/dijit/nls/ko/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/ko/loading",({loadingState:"로드 중...",errorState:"죄송합니다. 오류가 발생했습니다."})); -------------------------------------------------------------------------------- /lib/dijit/nls/nb/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/nb/common",({buttonOk:"OK",buttonCancel:"Avbryt",buttonSave:"Lagre",itemClose:"Lukk"})); -------------------------------------------------------------------------------- /lib/dijit/nls/nb/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/nb/loading",({loadingState:"Laster inn...",errorState:"Det oppsto en feil"})); -------------------------------------------------------------------------------- /lib/dijit/nls/nl/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/nl/common",({buttonOk:"OK",buttonCancel:"Annuleren",buttonSave:"Opslaan",itemClose:"Sluiten"})); -------------------------------------------------------------------------------- /lib/dijit/nls/nl/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/nl/loading",({loadingState:"Bezig met laden...",errorState:"Er is een fout opgetreden"})); -------------------------------------------------------------------------------- /lib/dijit/nls/pl/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/pl/common",({buttonOk:"OK",buttonCancel:"Anuluj",buttonSave:"Zapisz",itemClose:"Zamknij"})); -------------------------------------------------------------------------------- /lib/dijit/nls/pl/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/pl/loading",({loadingState:"Ładowanie...",errorState:"Niestety, wystąpił błąd"})); -------------------------------------------------------------------------------- /lib/dijit/nls/pt-pt/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/pt-pt/common",({buttonOk:"OK",buttonCancel:"Cancelar",buttonSave:"Guardar",itemClose:"Fechar"})); -------------------------------------------------------------------------------- /lib/dijit/nls/pt-pt/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/pt-pt/loading",({loadingState:"A carregar...",errorState:"Lamentamos, mas ocorreu um erro"})); -------------------------------------------------------------------------------- /lib/dijit/nls/pt/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/pt/common",({buttonOk:"OK",buttonCancel:"Cancelar",buttonSave:"Salvar",itemClose:"Fechar"})); -------------------------------------------------------------------------------- /lib/dijit/nls/pt/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/pt/loading",({loadingState:"Carregando...",errorState:"Desculpe, ocorreu um erro"})); -------------------------------------------------------------------------------- /lib/dijit/nls/ro/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/ro/common",({buttonOk:"OK",buttonCancel:"Anulare",buttonSave:"Salvare",itemClose:"Închidere"})); -------------------------------------------------------------------------------- /lib/dijit/nls/ro/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/ro/loading",({loadingState:"Încărcare...",errorState:"Ne pare rău, a apărut o eroare "})); -------------------------------------------------------------------------------- /lib/dijit/nls/ru/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/ru/common",({buttonOk:"OK",buttonCancel:"Отмена",buttonSave:"Сохранить",itemClose:"Закрыть"})); -------------------------------------------------------------------------------- /lib/dijit/nls/ru/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/ru/loading",({loadingState:"Загрузка...",errorState:"Извините, возникла ошибка"})); -------------------------------------------------------------------------------- /lib/dijit/nls/sk/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/sk/common",({buttonOk:"OK",buttonCancel:"Zrušiť",buttonSave:"Uložiť",itemClose:"Zatvoriť"})); -------------------------------------------------------------------------------- /lib/dijit/nls/sk/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/sk/loading",({loadingState:"Zavádza sa...",errorState:"Ľutujeme, ale vyskytla sa chyba"})); -------------------------------------------------------------------------------- /lib/dijit/nls/sl/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/sl/common",({buttonOk:"V redu",buttonCancel:"Prekliči",buttonSave:"Shrani",itemClose:"Zapri"})); -------------------------------------------------------------------------------- /lib/dijit/nls/sl/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/sl/loading",({loadingState:"Nalaganje ...",errorState:"Oprostite, prišlo je do napake."})); -------------------------------------------------------------------------------- /lib/dijit/nls/sv/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/sv/common",({buttonOk:"OK",buttonCancel:"Avbryt",buttonSave:"Spara",itemClose:"Stäng"})); -------------------------------------------------------------------------------- /lib/dijit/nls/sv/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/sv/loading",({loadingState:"Läser in...",errorState:"Det har inträffat ett fel."})); -------------------------------------------------------------------------------- /lib/dijit/nls/th/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/th/common",({buttonOk:"ตกลง",buttonCancel:"ยกเลิก",buttonSave:"บันทึก",itemClose:"ปิด"})); -------------------------------------------------------------------------------- /lib/dijit/nls/th/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/th/loading",({loadingState:"กำลังโหลด...",errorState:"ขออภัย เกิดข้อผิดพลาด"})); -------------------------------------------------------------------------------- /lib/dijit/nls/tr/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/tr/common",({buttonOk:"Tamam",buttonCancel:"İptal",buttonSave:"Kaydet",itemClose:"Kapat"})); -------------------------------------------------------------------------------- /lib/dijit/nls/tr/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/tr/loading",({loadingState:"Yükleniyor...",errorState:"Üzgünüz, bir hata oluştu"})); -------------------------------------------------------------------------------- /lib/dijit/nls/zh-tw/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/zh-tw/common",({buttonOk:"確定",buttonCancel:"取消",buttonSave:"儲存",itemClose:"關閉"})); -------------------------------------------------------------------------------- /lib/dijit/nls/zh-tw/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/zh-tw/loading",({loadingState:"載入中...",errorState:"抱歉,發生錯誤"})); -------------------------------------------------------------------------------- /lib/dijit/nls/zh/common.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/zh/common",({buttonOk:"确定",buttonCancel:"取消",buttonSave:"保存",itemClose:"关闭"})); -------------------------------------------------------------------------------- /lib/dijit/nls/zh/loading.js: -------------------------------------------------------------------------------- 1 | //>>built 2 | define("dijit/nls/zh/loading",({loadingState:"正在加载...",errorState:"对不起,发生了错误"})); -------------------------------------------------------------------------------- /lib/dijit/themes/a11y/colors3x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/a11y/colors3x4.png -------------------------------------------------------------------------------- /lib/dijit/themes/a11y/colors7x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/a11y/colors7x10.png -------------------------------------------------------------------------------- /lib/dijit/themes/claro/Editor_rtl.css: -------------------------------------------------------------------------------- 1 | .claro .dijitEditorRtl .dijitEditorIFrameContainer {padding: 3px 10px 1px 3px;} -------------------------------------------------------------------------------- /lib/dijit/themes/claro/TitlePane_rtl.css: -------------------------------------------------------------------------------- 1 | .claro .dijitTitlePaneRtl .dijitClosed .dijitArrowNode {background-position: -7px 0;} -------------------------------------------------------------------------------- /lib/dijit/themes/claro/form/Common_rtl.css: -------------------------------------------------------------------------------- 1 | .claro .dijitTextBoxRtlError .dijitValidationContainer {border-left-width: 0 !important; border-right-width: 1px !important;} -------------------------------------------------------------------------------- /lib/dijit/themes/claro/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/claro/images/calendar.png -------------------------------------------------------------------------------- /lib/dijit/themes/claro/images/dnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/claro/images/dnd.png -------------------------------------------------------------------------------- /lib/dijit/themes/claro/images/tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/claro/images/tooltip.png -------------------------------------------------------------------------------- /lib/dijit/themes/nihilo/ColorPalette.css: -------------------------------------------------------------------------------- 1 | .dijitColorPalette {border:1px solid #d3d3d3; background:#fff; -moz-border-radius: 0 !important;} -------------------------------------------------------------------------------- /lib/dijit/themes/nihilo/Dialog_rtl.css: -------------------------------------------------------------------------------- 1 | .dijitRtl .nihilo .dijitDialogTitleBar .dijitDialogCloseIcon {right: auto; left: 5px;} -------------------------------------------------------------------------------- /lib/dijit/themes/nihilo/TimePicker_rtl.css: -------------------------------------------------------------------------------- 1 | .dj_ie6-rtl .nihilo .dijitTimePickerMarkerHover,.dj_ie7-rtl .nihilo .dijitTimePickerMarkerHover {border-top: 0;} -------------------------------------------------------------------------------- /lib/dijit/themes/nihilo/form/Button_rtl.css: -------------------------------------------------------------------------------- 1 | .nihilo .dijitComboBoxRtl .dijitButtonNode {border-width: 0 0 0 1px;} -------------------------------------------------------------------------------- /lib/dijit/themes/nihilo/form/TimeTextBox.css: -------------------------------------------------------------------------------- 1 | @CHARSET "UTF-8"; -------------------------------------------------------------------------------- /lib/dijit/themes/nihilo/images/dndCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/nihilo/images/dndCopy.png -------------------------------------------------------------------------------- /lib/dijit/themes/nihilo/images/dndMove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/nihilo/images/dndMove.png -------------------------------------------------------------------------------- /lib/dijit/themes/nihilo/images/no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/nihilo/images/no.gif -------------------------------------------------------------------------------- /lib/dijit/themes/nihilo/images/treeI.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/nihilo/images/treeI.gif -------------------------------------------------------------------------------- /lib/dijit/themes/nihilo/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/nihilo/images/warning.png -------------------------------------------------------------------------------- /lib/dijit/themes/soria/ColorPalette.css: -------------------------------------------------------------------------------- 1 | .dijitColorPalette {border:1px solid #cbcbcb; background:#fff; -moz-border-radius: 0 !important;} -------------------------------------------------------------------------------- /lib/dijit/themes/soria/Dialog_rtl.css: -------------------------------------------------------------------------------- 1 | .dijitRtl .soria .dijitDialogTitleBar .dijitDialogCloseIcon {right: auto; left: 5px;} -------------------------------------------------------------------------------- /lib/dijit/themes/soria/TimePicker_rtl.css: -------------------------------------------------------------------------------- 1 | .dj_ie6-rtl .soria .dijitTimePickerMarkerHover,.dj_ie7-rtl .soria .dijitTimePickerMarkerHover {border-top: 0;} -------------------------------------------------------------------------------- /lib/dijit/themes/soria/form/Button_rtl.css: -------------------------------------------------------------------------------- 1 | .soria .dijitComboBoxRtl .dijitButtonNode {border-width: 0 0 0 1px;} -------------------------------------------------------------------------------- /lib/dijit/themes/soria/form/TimeTextBox.css: -------------------------------------------------------------------------------- 1 | @CHARSET "UTF-8"; -------------------------------------------------------------------------------- /lib/dijit/themes/soria/images/dndCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/soria/images/dndCopy.png -------------------------------------------------------------------------------- /lib/dijit/themes/soria/images/dndMove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/soria/images/dndMove.png -------------------------------------------------------------------------------- /lib/dijit/themes/soria/images/titleBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/soria/images/titleBar.png -------------------------------------------------------------------------------- /lib/dijit/themes/soria/images/treeI.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/soria/images/treeI.gif -------------------------------------------------------------------------------- /lib/dijit/themes/soria/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/soria/images/warning.png -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/ColorPalette.css: -------------------------------------------------------------------------------- 1 | .dijitColorPalette {border:1px solid #7eabcd; background:#fff; -moz-border-radius: 0 !important;} -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/Dialog_rtl.css: -------------------------------------------------------------------------------- 1 | .tundra .dijitDialogRtl .dijitDialogCloseIcon {right: auto; left: 5px;} -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/Menu_rtl.css: -------------------------------------------------------------------------------- 1 | .tundra .dijitMenuItemRtl .dijitMenuExpand {background-position: -7px 0;} -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/TitlePane_rtl.css: -------------------------------------------------------------------------------- 1 | .tundra .dijitTitlePaneRtl .dijitClosed .dijitArrowNode {background-position: -7px 0;} -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/images/dndCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/tundra/images/dndCopy.png -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/images/dndMove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/tundra/images/dndMove.png -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/images/i.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/tundra/images/i.gif -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/images/i_half.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/tundra/images/i_half.gif -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/images/i_rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/tundra/images/i_rtl.gif -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/images/leaf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/tundra/images/leaf.gif -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/tundra/images/loading.gif -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/tundra/images/menu.png -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/images/no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/tundra/images/no.gif -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/images/noX.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/tundra/images/noX.gif -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dijit/themes/tundra/images/warning.png -------------------------------------------------------------------------------- /lib/dijit/themes/tundra/layout/TabContainer_rtl.css: -------------------------------------------------------------------------------- 1 | .tundra .dijitTabRtl {padding:2px 9px 2px 8px;} -------------------------------------------------------------------------------- /lib/dojo-src/.gitignore: -------------------------------------------------------------------------------- 1 | dijit 2 | dojo 3 | dojox 4 | release 5 | util 6 | dojo-release-* 7 | log* -------------------------------------------------------------------------------- /lib/dojo/_firebug/errorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dojo/_firebug/errorIcon.png -------------------------------------------------------------------------------- /lib/dojo/_firebug/infoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dojo/_firebug/infoIcon.png -------------------------------------------------------------------------------- /lib/dojo/_firebug/tab_lft_norm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dojo/_firebug/tab_lft_norm.png -------------------------------------------------------------------------------- /lib/dojo/_firebug/tab_lft_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dojo/_firebug/tab_lft_over.png -------------------------------------------------------------------------------- /lib/dojo/_firebug/tab_rgt_norm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dojo/_firebug/tab_rgt_norm.png -------------------------------------------------------------------------------- /lib/dojo/_firebug/tab_rgt_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dojo/_firebug/tab_rgt_over.png -------------------------------------------------------------------------------- /lib/dojo/_firebug/warningIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dojo/_firebug/warningIcon.png -------------------------------------------------------------------------------- /lib/dojo/cldr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dojo/cldr/LICENSE -------------------------------------------------------------------------------- /lib/dojo/resources/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dojo/resources/blank.gif -------------------------------------------------------------------------------- /lib/dojo/resources/blank.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /lib/dojo/resources/images/dndCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dojo/resources/images/dndCopy.png -------------------------------------------------------------------------------- /lib/dojo/resources/images/dndMove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dojo/resources/images/dndMove.png -------------------------------------------------------------------------------- /lib/dojo/resources/images/dndNoCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dojo/resources/images/dndNoCopy.png -------------------------------------------------------------------------------- /lib/dojo/resources/images/dndNoMove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/dojo/resources/images/dndNoMove.png -------------------------------------------------------------------------------- /lib/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/index.html -------------------------------------------------------------------------------- /lib/phpqrcode/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.4 2 | 2010100721 -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_1.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_10.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_10.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_11.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_11.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_12.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_12.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_13.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_13.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_14.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_14.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_15.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_15.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_16.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_16.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_17.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_17.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_18.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_18.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_18.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_19.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_19.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_19.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_2.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_20.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_20.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_21.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_21.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_21.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_22.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_22.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_22.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_23.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_23.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_23.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_24.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_24.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_24.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_25.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_25.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_25.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_26.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_26.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_26.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_27.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_27.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_27.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_28.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_28.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_28.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_29.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_29.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_29.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_3.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_30.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_30.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_30.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_31.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_31.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_31.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_32.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_32.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_33.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_33.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_33.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_34.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_34.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_34.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_35.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_35.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_35.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_36.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_36.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_36.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_37.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_37.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_37.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_38.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_38.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_38.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_39.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_39.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_39.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_4.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_40.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_40.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_5.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_6.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_7.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_7.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_8.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_8.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_9.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/frame_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/frame_9.png -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_101_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_101_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_105_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_105_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_109_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_109_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_113_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_113_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_117_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_117_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_121_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_121_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_125_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_125_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_129_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_129_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_133_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_133_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_137_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_137_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_141_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_141_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_145_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_145_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_149_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_149_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_153_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_153_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_157_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_157_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_161_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_161_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_165_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_165_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_169_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_169_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_173_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_173_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_177_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_177_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_21_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_21_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_25_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_25_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_29_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_29_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_33_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_33_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_37_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_37_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_41_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_41_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_45_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_45_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_49_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_49_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_53_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_53_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_57_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_57_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_61_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_61_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_65_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_65_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_69_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_69_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_73_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_73_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_77_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_77_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_81_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_81_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_85_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_85_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_89_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_89_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_93_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_93_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_0/mask_97_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_0/mask_97_0.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_101_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_101_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_105_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_105_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_109_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_109_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_113_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_113_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_117_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_117_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_121_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_121_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_125_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_125_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_129_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_129_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_133_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_133_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_137_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_137_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_141_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_141_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_145_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_145_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_149_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_149_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_153_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_153_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_157_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_157_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_161_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_161_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_165_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_165_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_169_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_169_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_173_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_173_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_177_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_177_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_21_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_21_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_25_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_25_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_29_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_29_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_33_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_33_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_37_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_37_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_41_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_41_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_45_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_45_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_49_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_49_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_53_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_53_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_57_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_57_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_61_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_61_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_65_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_65_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_69_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_69_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_73_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_73_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_77_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_77_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_81_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_81_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_85_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_85_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_89_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_89_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_93_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_93_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_1/mask_97_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_1/mask_97_1.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_101_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_101_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_105_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_105_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_109_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_109_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_113_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_113_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_117_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_117_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_121_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_121_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_125_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_125_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_129_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_129_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_133_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_133_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_137_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_137_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_141_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_141_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_145_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_145_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_149_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_149_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_153_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_153_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_157_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_157_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_161_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_161_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_165_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_165_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_169_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_169_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_173_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_173_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_177_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_177_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_21_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_21_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_25_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_25_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_29_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_29_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_33_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_33_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_37_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_37_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_41_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_41_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_45_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_45_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_49_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_49_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_53_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_53_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_57_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_57_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_61_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_61_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_65_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_65_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_69_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_69_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_73_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_73_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_77_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_77_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_81_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_81_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_85_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_85_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_89_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_89_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_93_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_93_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_2/mask_97_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_2/mask_97_2.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_101_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_101_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_105_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_105_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_109_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_109_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_113_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_113_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_117_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_117_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_121_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_121_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_125_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_125_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_129_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_129_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_133_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_133_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_137_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_137_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_141_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_141_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_145_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_145_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_149_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_149_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_153_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_153_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_157_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_157_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_161_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_161_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_165_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_165_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_169_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_169_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_173_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_173_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_177_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_177_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_21_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_21_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_25_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_25_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_29_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_29_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_33_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_33_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_37_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_37_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_41_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_41_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_45_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_45_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_49_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_49_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_53_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_53_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_57_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_57_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_61_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_61_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_65_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_65_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_69_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_69_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_73_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_73_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_77_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_77_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_81_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_81_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_85_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_85_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_89_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_89_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_93_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_93_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_3/mask_97_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_3/mask_97_3.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_101_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_101_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_105_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_105_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_109_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_109_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_113_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_113_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_117_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_117_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_121_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_121_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_125_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_125_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_129_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_129_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_133_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_133_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_137_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_137_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_141_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_141_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_145_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_145_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_149_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_149_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_153_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_153_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_157_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_157_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_161_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_161_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_165_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_165_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_169_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_169_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_173_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_173_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_177_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_177_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_21_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_21_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_25_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_25_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_29_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_29_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_33_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_33_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_37_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_37_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_41_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_41_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_45_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_45_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_49_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_49_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_53_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_53_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_57_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_57_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_61_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_61_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_65_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_65_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_69_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_69_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_73_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_73_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_77_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_77_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_81_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_81_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_85_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_85_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_89_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_89_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_93_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_93_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_4/mask_97_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_4/mask_97_4.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_101_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_101_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_105_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_105_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_109_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_109_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_113_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_113_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_117_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_117_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_121_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_121_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_125_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_125_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_129_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_129_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_133_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_133_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_137_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_137_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_141_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_141_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_145_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_145_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_149_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_149_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_153_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_153_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_157_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_157_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_161_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_161_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_165_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_165_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_169_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_169_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_173_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_173_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_177_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_177_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_21_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_21_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_25_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_25_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_29_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_29_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_33_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_33_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_37_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_37_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_41_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_41_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_45_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_45_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_49_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_49_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_53_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_53_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_57_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_57_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_61_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_61_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_65_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_65_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_69_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_69_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_73_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_73_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_77_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_77_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_81_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_81_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_85_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_85_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_89_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_89_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_93_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_93_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_5/mask_97_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_5/mask_97_5.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_101_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_101_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_105_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_105_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_109_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_109_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_113_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_113_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_117_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_117_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_121_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_121_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_125_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_125_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_129_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_129_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_133_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_133_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_137_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_137_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_141_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_141_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_145_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_145_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_149_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_149_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_153_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_153_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_157_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_157_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_161_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_161_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_165_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_165_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_169_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_169_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_173_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_173_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_177_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_177_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_21_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_21_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_25_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_25_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_29_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_29_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_33_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_33_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_37_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_37_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_41_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_41_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_45_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_45_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_49_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_49_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/cache/mask_6/mask_53_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lib/phpqrcode/cache/mask_6/mask_53_6.dat -------------------------------------------------------------------------------- /lib/phpqrcode/tools/merge.bat: -------------------------------------------------------------------------------- 1 | php ./merge.php 2 | pause -------------------------------------------------------------------------------- /lib/phpqrcode/tools/merge.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | php ./merge.php -------------------------------------------------------------------------------- /locale/.htaccess: -------------------------------------------------------------------------------- 1 | Order deny,allow 2 | Deny from all 3 | -------------------------------------------------------------------------------- /locale/ar_SA/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/ar_SA/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ca_CA/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/ca_CA/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/cs_CZ/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/cs_CZ/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/da_DA/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/da_DA/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/de_DE/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/de_DE/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/el_GR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/el_GR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/es_ES/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/es_ES/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/es_LA/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/es_LA/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/fi_FI/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/fi_FI/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/fr_FR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/fr_FR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/hu_HU/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/hu_HU/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/it_IT/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/it_IT/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ja_JP/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/ja_JP/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ko_KR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/ko_KR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/lv_LV/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/lv_LV/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/nb_NO/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/nb_NO/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/nl_NL/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/nl_NL/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/pl_PL/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/pl_PL/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/pt_BR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/pt_PT/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/pt_PT/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ru_RU/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/ru_RU/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/sv_SE/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/sv_SE/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/tr_TR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/tr_TR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/zh_CN/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/zh_TW/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/locale/zh_TW/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /lock/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/lock/.empty -------------------------------------------------------------------------------- /lock/.htaccess: -------------------------------------------------------------------------------- 1 | Order deny,allow 2 | Deny from all 3 | -------------------------------------------------------------------------------- /plugins/close_button/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/plugins/close_button/button.png -------------------------------------------------------------------------------- /plugins/embed_original/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/plugins/embed_original/button.png -------------------------------------------------------------------------------- /plugins/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/plugins/index.html -------------------------------------------------------------------------------- /plugins/mail/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/plugins/mail/mail.png -------------------------------------------------------------------------------- /plugins/mailto/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/plugins/mailto/mail.png -------------------------------------------------------------------------------- /plugins/no_title_counters/init.js: -------------------------------------------------------------------------------- 1 | dojo.addOnLoad(function() { 2 | updateTitle = function() { 3 | document.title = "Tiny Tiny RSS"; 4 | }; 5 | }); 6 | -------------------------------------------------------------------------------- /plugins/no_url_hashes/init.js: -------------------------------------------------------------------------------- 1 | dojo.addOnLoad(function() { 2 | hash_set = function() { }; 3 | hash_get = function() { }; 4 | }); 5 | -------------------------------------------------------------------------------- /plugins/note/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/plugins/note/note.png -------------------------------------------------------------------------------- /plugins/share/notshared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/plugins/share/notshared.png -------------------------------------------------------------------------------- /plugins/share/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/plugins/share/share.png -------------------------------------------------------------------------------- /plugins/vf_shared/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/plugins/vf_shared/share.png -------------------------------------------------------------------------------- /schema/.htaccess: -------------------------------------------------------------------------------- 1 | Order deny,allow 2 | Deny from all 3 | -------------------------------------------------------------------------------- /schema/versions/mysql/25.sql: -------------------------------------------------------------------------------- 1 | insert into ttrss_themes (theme_name, theme_path) values ('Three-pane', '3pane'); 2 | 3 | update ttrss_version set schema_version = 25; 4 | -------------------------------------------------------------------------------- /schema/versions/mysql/34.sql: -------------------------------------------------------------------------------- 1 | alter table ttrss_feeds change feed_url feed_url text not null; 2 | 3 | update ttrss_version set schema_version = 34; 4 | -------------------------------------------------------------------------------- /schema/versions/mysql/35.sql: -------------------------------------------------------------------------------- 1 | update ttrss_version set schema_version = 35; 2 | -------------------------------------------------------------------------------- /schema/versions/mysql/43.sql: -------------------------------------------------------------------------------- 1 | alter table ttrss_labels change sql_exp sql_exp text not null; 2 | 3 | update ttrss_version set schema_version = 43; 4 | -------------------------------------------------------------------------------- /schema/versions/mysql/55.sql: -------------------------------------------------------------------------------- 1 | begin; 2 | 3 | alter table ttrss_user_entries add column note text; 4 | 5 | update ttrss_version set schema_version = 55; 6 | 7 | commit; 8 | -------------------------------------------------------------------------------- /schema/versions/pgsql/123.sql: -------------------------------------------------------------------------------- 1 | begin; 2 | 3 | update ttrss_version set schema_version = 123; 4 | 5 | commit; 6 | -------------------------------------------------------------------------------- /schema/versions/pgsql/125.sql: -------------------------------------------------------------------------------- 1 | begin; 2 | 3 | update ttrss_version set schema_version = 125; 4 | 5 | commit; 6 | -------------------------------------------------------------------------------- /schema/versions/pgsql/25.sql: -------------------------------------------------------------------------------- 1 | insert into ttrss_themes (theme_name, theme_path) values ('Three-pane', '3pane'); 2 | 3 | update ttrss_version set schema_version = 25; 4 | -------------------------------------------------------------------------------- /schema/versions/pgsql/55.sql: -------------------------------------------------------------------------------- 1 | begin; 2 | 3 | alter table ttrss_user_entries add column note text; 4 | 5 | update ttrss_version set schema_version = 55; 6 | 7 | commit; 8 | -------------------------------------------------------------------------------- /schema/versions/pgsql/56.sql: -------------------------------------------------------------------------------- 1 | begin; 2 | 3 | update ttrss_version set schema_version = 56; 4 | 5 | commit; 6 | -------------------------------------------------------------------------------- /templates/.htaccess: -------------------------------------------------------------------------------- 1 | Order deny,allow 2 | Deny from all 3 | -------------------------------------------------------------------------------- /themes/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparyani/Tiny-Tiny-RSS/a1ddbd974a0919330d7536073ef214cdac996e1d/themes/.empty -------------------------------------------------------------------------------- /themes/default.css: -------------------------------------------------------------------------------- 1 | @import "../css/tt-rss.css"; 2 | @import "../css/dijit.css"; 3 | @import "../css/cdm.css"; 4 | @import "../css/prefs.css"; 5 | -------------------------------------------------------------------------------- /utils/.htaccess: -------------------------------------------------------------------------------- 1 | Order deny,allow 2 | Deny from all 3 | --------------------------------------------------------------------------------