mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-04 02:09:35 +02:00
Copyrights have been added
This commit is contained in:
parent
57dc898a7a
commit
038a8a3227
3 changed files with 55 additions and 26 deletions
|
@ -5,12 +5,12 @@
|
||||||
+ add catalog icons
|
+ add catalog icons
|
||||||
+ order catalogs alphabetically
|
+ order catalogs alphabetically
|
||||||
+ extract litres API to a separate branch
|
+ extract litres API to a separate branch
|
||||||
** add RSS catalog
|
+ add RSS catalog
|
||||||
+ hardcoded strings ("Active/Inactive catalogs", may be some else?) => en.xml
|
+ hardcoded strings ("Active/Inactive catalogs", may be some else?) => en.xml
|
||||||
+ "Library filter" => "All catalogs"
|
+ "Library filter" => "All catalogs"
|
||||||
+ NetworkLibraryFilterActivity => AllCatalogsActivity
|
+ NetworkLibraryFilterActivity => AllCatalogsActivity
|
||||||
** make a separate branch for catalogs + master
|
** make a separate branch for catalogs + master
|
||||||
** copyrights in all files
|
+ copyrights in all files
|
||||||
|
|
||||||
* MID-TERM
|
* MID-TERM
|
||||||
** litres catalog use litres-api
|
** litres catalog use litres-api
|
||||||
|
|
|
@ -1,29 +1,39 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2010-2013 Geometer Plus <contact@geometerplus.com>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||||
|
* 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
package org.geometerplus.android.fbreader.network;
|
package org.geometerplus.android.fbreader.network;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.*;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Locale;
|
|
||||||
import java.util.TreeSet;
|
|
||||||
|
|
||||||
import org.geometerplus.android.fbreader.covers.CoverManager;
|
|
||||||
import org.geometerplus.fbreader.network.INetworkLink;
|
|
||||||
import org.geometerplus.fbreader.network.NetworkLibrary;
|
|
||||||
import org.geometerplus.fbreader.network.NetworkTree;
|
|
||||||
import org.geometerplus.fbreader.network.tree.NetworkCatalogRootTree;
|
|
||||||
import org.geometerplus.zlibrary.ui.android.R;
|
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.view.LayoutInflater;
|
import android.view.*;
|
||||||
import android.view.View;
|
import android.widget.*;
|
||||||
import android.view.ViewGroup;
|
|
||||||
import android.widget.ArrayAdapter;
|
import org.geometerplus.zlibrary.ui.android.R;
|
||||||
import android.widget.CheckBox;
|
import org.geometerplus.fbreader.network.*;
|
||||||
import android.widget.ImageView;
|
import org.geometerplus.fbreader.network.tree.NetworkCatalogRootTree;
|
||||||
import android.widget.ListView;
|
import org.geometerplus.android.fbreader.covers.CoverManager;
|
||||||
import android.widget.TextView;
|
|
||||||
|
|
||||||
|
|
||||||
public class AllCatalogsActivity extends Activity {
|
public class AllCatalogsActivity extends Activity {
|
||||||
final NetworkLibrary library = NetworkLibrary.Instance();
|
final NetworkLibrary library = NetworkLibrary.Instance();
|
||||||
|
|
|
@ -1,16 +1,35 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2010-2013 Geometer Plus <contact@geometerplus.com>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||||
|
* 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
package org.geometerplus.android.fbreader.network.action;
|
package org.geometerplus.android.fbreader.network.action;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.geometerplus.android.fbreader.OrientationUtil;
|
|
||||||
import org.geometerplus.android.fbreader.network.AllCatalogsActivity;
|
|
||||||
import org.geometerplus.fbreader.network.NetworkLibrary;
|
|
||||||
import org.geometerplus.fbreader.network.NetworkTree;
|
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
|
|
||||||
|
import org.geometerplus.fbreader.network.NetworkTree;
|
||||||
|
import org.geometerplus.fbreader.network.NetworkLibrary;
|
||||||
|
import org.geometerplus.android.fbreader.OrientationUtil;
|
||||||
|
import org.geometerplus.android.fbreader.network.AllCatalogsActivity;
|
||||||
|
|
||||||
public class AllCatalogsAction extends RootAction {
|
public class AllCatalogsAction extends RootAction {
|
||||||
|
|
||||||
public AllCatalogsAction(Activity activity) {
|
public AllCatalogsAction(Activity activity) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue