Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1"""LICENSE 

2Copyright 2015 Hermann Krumrey <hermann@krumreyh.com> 

3 

4This file is part of toktokkie. 

5 

6toktokkie is free software: you can redistribute it and/or modify 

7it under the terms of the GNU General Public License as published by 

8the Free Software Foundation, either version 3 of the License, or 

9(at your option) any later version. 

10 

11toktokkie is distributed in the hope that it will be useful, 

12but WITHOUT ANY WARRANTY; without even the implied warranty of 

13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 

14GNU General Public License for more details. 

15 

16You should have received a copy of the GNU General Public License 

17along with toktokkie. If not, see <http://www.gnu.org/licenses/>. 

18LICENSE""" 

19 

20from toktokkie.commands.UrlOpenCommand import UrlOpenCommand 

21from toktokkie.commands.PrintCommand import PrintCommand 

22from toktokkie.commands.IconizeCommand import IconizeCommand 

23from toktokkie.commands.RenameCommand import RenameCommand 

24from toktokkie.commands.ArchiveCommand import ArchiveCommand 

25from toktokkie.commands.MangaCreateCommand import MangaCreateCommand 

26from toktokkie.commands.MetadataGenCommand import MetadataGenCommand 

27from toktokkie.commands.UpdateCommand import UpdateCommand 

28from toktokkie.commands.MetadataAddCommand import MetadataAddCommand 

29from toktokkie.commands.SetComicCoverCommand import SetComicCoverCommand 

30from toktokkie.commands.SuperCutCommand import SuperCutCommand 

31from toktokkie.commands.AnimeThemeDlCommand import AnimeThemeDlCommand 

32from toktokkie.commands.AlbumArtFetchCommand import AlbumArtFetchCommand 

33from toktokkie.commands.MusicTagCommand import MusicTagCommand 

34from toktokkie.commands.PlaylistCreateCommand import PlaylistCreateCommand 

35from toktokkie.commands.MusicMergeCommand import MusicMergeCommand 

36from toktokkie.commands.IdFetchCommand import IdFetchCommand 

37from toktokkie.commands.YoutubeMusicDlCommand import YoutubeMusicDlCommand 

38from toktokkie.commands.MetadataValidateCommand import MetadataValidateCommand 

39 

40toktokkie_commands = [ 

41 PrintCommand, 

42 UrlOpenCommand, 

43 IconizeCommand, 

44 RenameCommand, 

45 ArchiveCommand, 

46 MangaCreateCommand, 

47 MetadataGenCommand, 

48 UpdateCommand, 

49 MetadataAddCommand, 

50 SetComicCoverCommand, 

51 SuperCutCommand, 

52 AnimeThemeDlCommand, 

53 AlbumArtFetchCommand, 

54 MusicTagCommand, 

55 MusicMergeCommand, 

56 PlaylistCreateCommand, 

57 IdFetchCommand, 

58 YoutubeMusicDlCommand, 

59 MetadataValidateCommand 

60] 

61""" 

62A list of commands for the toktokkie script 

63"""