├── Resources ├── app │ ├── helpers │ │ └── spaz.js │ ├── libs │ │ ├── Emoticons.SimpleSmileys.js │ │ ├── spaz.const.js │ │ ├── spaz.timers.js │ │ ├── Emoticons.js │ │ ├── spaz.hooks.js │ │ └── Emoticons.GMailChat.js │ ├── auth_config_sample.js │ ├── models │ │ ├── spaz.uploadservice.js │ │ └── DraftModel.js │ ├── views │ │ ├── spaz.wilhelm.js │ │ ├── spaz.editor.js │ │ ├── spaz.sounds.js │ │ ├── spaz.newspopup.js │ │ ├── spaz.sharemenu.js │ │ ├── spaz.replymenu.js │ │ └── spaz.timelinefilters.js │ └── controllers │ │ └── spaz.handlers.js ├── README.md ├── themes │ ├── Dumb Terminal │ │ ├── theme.js │ │ ├── images │ │ │ ├── loading.gif │ │ │ ├── icon-lock.png │ │ │ ├── resize-se.png │ │ │ ├── status-dm.png │ │ │ ├── status-reply.png │ │ │ ├── tab-icon-dms.png │ │ │ ├── status-fav-off.png │ │ │ ├── status-fav-on.png │ │ │ ├── status-retweet.png │ │ │ ├── tab-icon-prefs.png │ │ │ ├── tab-icon-public.png │ │ │ ├── tab-icon-search.png │ │ │ ├── tab-icon-user.png │ │ │ ├── status-fav-hover.png │ │ │ ├── tab-icon-replies.png │ │ │ ├── tab-icon-timeline.png │ │ │ ├── tab-icon-followers.png │ │ │ └── tab-icon-following.png │ │ └── info.js │ ├── whitespace │ │ ├── theme.js │ │ ├── images │ │ │ ├── loading.gif │ │ │ ├── pinger.gif │ │ │ ├── spinner.gif │ │ │ ├── spinner2.gif │ │ │ ├── dropshadow.png │ │ │ ├── icon-lock.png │ │ │ ├── resize-se.png │ │ │ ├── status-dm.png │ │ │ ├── status-delete.png │ │ │ ├── status-fav-on.png │ │ │ ├── status-reply.png │ │ │ ├── tab-icon-dms.png │ │ │ ├── tab-icon-user.png │ │ │ ├── status-fav-off.png │ │ │ ├── status-retweet.png │ │ │ ├── tab-icon-prefs.png │ │ │ ├── tab-icon-public.png │ │ │ ├── tab-icon-search.png │ │ │ ├── user-detail-bg.png │ │ │ ├── status-fav-hover.png │ │ │ ├── tab-icon-followers.png │ │ │ ├── tab-icon-following.png │ │ │ ├── tab-icon-replies.png │ │ │ ├── tab-icon-timeline.png │ │ │ └── thickboxLoadingAnimation.gif │ │ └── info.js │ ├── spaz │ │ ├── images │ │ │ ├── popup.png │ │ │ ├── checkbox.png │ │ │ ├── loading.gif │ │ │ ├── resize-ns.png │ │ │ ├── resize-se.png │ │ │ ├── retweeted.png │ │ │ ├── status-dm.png │ │ │ ├── close-black.png │ │ │ ├── dropshadow.png │ │ │ ├── lock-black.png │ │ │ ├── lock-white.png │ │ │ ├── status-edit.png │ │ │ ├── userimg-bg.png │ │ │ ├── buttons │ │ │ │ ├── large.png │ │ │ │ ├── small.png │ │ │ │ ├── large-prefs.png │ │ │ │ ├── large-active.png │ │ │ │ ├── small-active.png │ │ │ │ ├── large-disabled.png │ │ │ │ ├── small-disabled.png │ │ │ │ ├── large-prefs-active.png │ │ │ │ └── large-prefs-disabled.png │ │ │ ├── entry-even-bg.png │ │ │ ├── entry-odd-bg.png │ │ │ ├── leopaz-preview.png │ │ │ ├── loading-16x16.png │ │ │ ├── menu-checkmark.png │ │ │ ├── panel-menu │ │ │ │ ├── bg.png │ │ │ │ ├── button.png │ │ │ │ └── button-active.png │ │ │ ├── profiles │ │ │ │ ├── faves.png │ │ │ │ └── tools.png │ │ │ ├── refresh-white.png │ │ │ ├── search-input.png │ │ │ ├── status-delete.png │ │ │ ├── status-fav-off.png │ │ │ ├── status-fav-on.png │ │ │ ├── status-reply.png │ │ │ ├── status-retweet.png │ │ │ ├── tab-icon-prefs.png │ │ │ ├── tab-icon-tools.png │ │ │ ├── tab-icon-user.png │ │ │ ├── text-input-bg.png │ │ │ ├── timeline-dm-bg.png │ │ │ ├── view-switches.png │ │ │ ├── accounts-current.png │ │ │ ├── scrollbar │ │ │ │ ├── corner.png │ │ │ │ ├── track.png │ │ │ │ ├── cap-top.png │ │ │ │ ├── cap-bottom.png │ │ │ │ ├── thumb-active.png │ │ │ │ ├── thumb-inactive.png │ │ │ │ ├── button-vertical-top-down.png │ │ │ │ ├── button-vertical-top-up.png │ │ │ │ ├── button-vertical-bottom-up.png │ │ │ │ ├── button-vertical-bottom-down.png │ │ │ │ ├── button-vertical-top-up-square.png │ │ │ │ └── button-vertical-bottom-down-square.png │ │ │ ├── status-dm-hollow.png │ │ │ ├── status-reply-at.png │ │ │ ├── tab-icon-public.png │ │ │ ├── tab-icon-replies.png │ │ │ ├── tab-icon-search.png │ │ │ ├── close-white-small.png │ │ │ ├── entry-selected-bg.png │ │ │ ├── loading-white-12x12.png │ │ │ ├── loading-white-50x50.png │ │ │ ├── search-input-close.png │ │ │ ├── status-retweet-rt.png │ │ │ ├── tab-icon-favorites.png │ │ │ ├── tab-icon-followers.png │ │ │ ├── tab-icon-following.png │ │ │ ├── tab-icon-timeline.png │ │ │ ├── tab-icon-userlists.png │ │ │ ├── text-input-top-bg.png │ │ │ ├── timeline-mention-bg.png │ │ │ ├── disclosure-triangles.png │ │ │ ├── prefs-panel-legend-bg.png │ │ │ ├── search-input-inactive.png │ │ │ ├── timeline-favorite-bg.png │ │ │ ├── window-controls-close.png │ │ │ ├── window-controls-zoom.png │ │ │ ├── tab-icon-followers-eye.png │ │ │ ├── tab-icon-prefs-selected.png │ │ │ ├── tab-icon-public-selected.png │ │ │ ├── tab-icon-search-selected.png │ │ │ ├── tab-icon-user-selected.png │ │ │ ├── thickboxLoadingAnimation.gif │ │ │ ├── window-controls-minimize.png │ │ │ ├── status-retweet-curvedarrow.png │ │ │ ├── status-retweet-rightarrow.png │ │ │ ├── tab-icon-replies-selected.png │ │ │ ├── tab-icon-timeline-selected.png │ │ │ ├── tab-icon-favorites-selected.png │ │ │ ├── tab-icon-followers-selected.png │ │ │ ├── tab-icon-following-selected.png │ │ │ ├── tab-icon-userlists-selected.png │ │ │ ├── timeline-favorite-bg-inset100.png │ │ │ ├── timeline-mention-bg-inset100.png │ │ │ └── tab-icon-followers-eye-selected.png │ │ ├── info.js │ │ └── css │ │ │ └── pagination.css │ ├── Leopaz │ │ ├── images │ │ │ ├── loading.gif │ │ │ ├── popup.png │ │ │ ├── checkbox.png │ │ │ ├── resize-ns.png │ │ │ ├── resize-se.png │ │ │ ├── retweeted.png │ │ │ ├── status-dm.png │ │ │ ├── close-black.png │ │ │ ├── dropshadow.png │ │ │ ├── lock-black.png │ │ │ ├── lock-white.png │ │ │ ├── search-input.png │ │ │ ├── status-edit.png │ │ │ ├── status-reply.png │ │ │ ├── userimg-bg.png │ │ │ ├── buttons │ │ │ │ ├── large.png │ │ │ │ ├── small.png │ │ │ │ ├── large-prefs.png │ │ │ │ ├── large-active.png │ │ │ │ ├── large-disabled.png │ │ │ │ ├── small-active.png │ │ │ │ ├── small-disabled.png │ │ │ │ ├── large-prefs-active.png │ │ │ │ └── large-prefs-disabled.png │ │ │ ├── leopaz-preview.png │ │ │ ├── loading-16x16.png │ │ │ ├── menu-checkmark.png │ │ │ ├── panel-menu │ │ │ │ ├── bg.png │ │ │ │ ├── button.png │ │ │ │ └── button-active.png │ │ │ ├── profiles │ │ │ │ ├── faves.png │ │ │ │ └── tools.png │ │ │ ├── refresh-white.png │ │ │ ├── status-delete.png │ │ │ ├── status-fav-off.png │ │ │ ├── status-fav-on.png │ │ │ ├── status-retweet.png │ │ │ ├── tab-icon-prefs.png │ │ │ ├── tab-icon-tools.png │ │ │ ├── tab-icon-user.png │ │ │ ├── text-input-bg.png │ │ │ ├── timeline-dm-bg.png │ │ │ ├── view-switches.png │ │ │ ├── accounts-current.png │ │ │ ├── close-white-small.png │ │ │ ├── scrollbar │ │ │ │ ├── cap-top.png │ │ │ │ ├── corner.png │ │ │ │ ├── track.png │ │ │ │ ├── cap-bottom.png │ │ │ │ ├── thumb-active.png │ │ │ │ ├── thumb-inactive.png │ │ │ │ ├── button-vertical-top-up.png │ │ │ │ ├── button-vertical-top-down.png │ │ │ │ ├── button-vertical-bottom-down.png │ │ │ │ ├── button-vertical-bottom-up.png │ │ │ │ ├── button-vertical-top-up-square.png │ │ │ │ └── button-vertical-bottom-down-square.png │ │ │ ├── status-dm-hollow.png │ │ │ ├── status-reply-at.png │ │ │ ├── status-retweet-rt.png │ │ │ ├── tab-icon-public.png │ │ │ ├── tab-icon-search.png │ │ │ ├── tab-icon-timeline.png │ │ │ ├── text-input-top-bg.png │ │ │ ├── followstatus-friend.png │ │ │ ├── followstatus-mutual.png │ │ │ ├── loading-white-50x50.png │ │ │ ├── search-input-close.png │ │ │ ├── tab-icon-favorites.png │ │ │ ├── tab-icon-followers.png │ │ │ ├── tab-icon-userlists.png │ │ │ ├── timeline-mention-bg.png │ │ │ ├── disclosure-triangles.png │ │ │ ├── followstatus-follower.png │ │ │ ├── prefs-panel-legend-bg.png │ │ │ ├── search-input-inactive.png │ │ │ ├── tab-icon-followers-eye.png │ │ │ ├── tab-icon-user-selected.png │ │ │ ├── timeline-favorite-bg.png │ │ │ ├── window-controls-close.png │ │ │ ├── window-controls-zoom.png │ │ │ ├── tab-icon-prefs-selected.png │ │ │ ├── tab-icon-public-selected.png │ │ │ ├── tab-icon-search-selected.png │ │ │ ├── thickboxLoadingAnimation.gif │ │ │ ├── window-controls-minimize.png │ │ │ ├── status-retweet-curvedarrow.png │ │ │ ├── status-retweet-rightarrow.png │ │ │ ├── tab-icon-favorites-selected.png │ │ │ ├── tab-icon-followers-selected.png │ │ │ ├── tab-icon-timeline-selected.png │ │ │ ├── tab-icon-userlists-selected.png │ │ │ ├── timeline-favorite-bg-inset100.png │ │ │ ├── timeline-mention-bg-inset100.png │ │ │ └── tab-icon-followers-eye-selected.png │ │ ├── jquery-ui │ │ │ └── images │ │ │ │ ├── 333333_7x7_arrow_up.gif │ │ │ │ ├── 666666_7x7_arrow_up.gif │ │ │ │ ├── 999999_7x7_arrow_up.gif │ │ │ │ ├── 333333_11x11_icon_doc.gif │ │ │ │ ├── 333333_11x11_icon_plus.gif │ │ │ │ ├── 333333_7x7_arrow_down.gif │ │ │ │ ├── 333333_7x7_arrow_left.gif │ │ │ │ ├── 333333_7x7_arrow_right.gif │ │ │ │ ├── 666666_11x11_icon_doc.gif │ │ │ │ ├── 666666_11x11_icon_plus.gif │ │ │ │ ├── 666666_7x7_arrow_down.gif │ │ │ │ ├── 666666_7x7_arrow_left.gif │ │ │ │ ├── 666666_7x7_arrow_right.gif │ │ │ │ ├── 999999_11x11_icon_doc.gif │ │ │ │ ├── 999999_11x11_icon_plus.gif │ │ │ │ ├── 999999_7x7_arrow_down.gif │ │ │ │ ├── 999999_7x7_arrow_left.gif │ │ │ │ ├── 999999_7x7_arrow_right.gif │ │ │ │ ├── 333333_11x11_icon_close.gif │ │ │ │ ├── 333333_11x11_icon_minus.gif │ │ │ │ ├── 666666_11x11_icon_close.gif │ │ │ │ ├── 666666_11x11_icon_minus.gif │ │ │ │ ├── 999999_11x11_icon_close.gif │ │ │ │ ├── 999999_11x11_icon_minus.gif │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ ├── 333333_11x11_icon_folder_open.gif │ │ │ │ ├── 666666_11x11_icon_folder_open.gif │ │ │ │ ├── 999999_11x11_icon_folder_open.gif │ │ │ │ ├── 333333_11x11_icon_arrows_updown.gif │ │ │ │ ├── 333333_11x11_icon_folder_closed.gif │ │ │ │ ├── 666666_11x11_icon_arrows_updown.gif │ │ │ │ ├── 666666_11x11_icon_folder_closed.gif │ │ │ │ ├── 999999_11x11_icon_arrows_updown.gif │ │ │ │ ├── 999999_11x11_icon_folder_closed.gif │ │ │ │ ├── FFFFFF_40x100_textures_02_glass.png │ │ │ │ ├── 666666_11x11_icon_arrows_leftright.gif │ │ │ │ └── 999999_11x11_icon_arrows_leftright.gif │ │ └── info.js │ ├── spaz-mini │ │ ├── images │ │ │ ├── popup.png │ │ │ ├── checkbox.png │ │ │ ├── loading.gif │ │ │ ├── resize-ns.png │ │ │ ├── resize-se.png │ │ │ ├── retweeted.png │ │ │ ├── status-dm.png │ │ │ ├── close-black.png │ │ │ ├── dropshadow.png │ │ │ ├── lock-black.png │ │ │ ├── lock-white.png │ │ │ ├── status-edit.png │ │ │ ├── userimg-bg.png │ │ │ ├── buttons │ │ │ │ ├── large.png │ │ │ │ ├── small.png │ │ │ │ ├── large-prefs.png │ │ │ │ ├── large-active.png │ │ │ │ ├── small-active.png │ │ │ │ ├── large-disabled.png │ │ │ │ ├── small-disabled.png │ │ │ │ ├── large-prefs-active.png │ │ │ │ └── large-prefs-disabled.png │ │ │ ├── entry-even-bg.png │ │ │ ├── entry-odd-bg.png │ │ │ ├── leopaz-preview.png │ │ │ ├── loading-16x16.png │ │ │ ├── menu-checkmark.png │ │ │ ├── panel-menu │ │ │ │ ├── bg.png │ │ │ │ ├── button.png │ │ │ │ └── button-active.png │ │ │ ├── profiles │ │ │ │ ├── faves.png │ │ │ │ └── tools.png │ │ │ ├── refresh-white.png │ │ │ ├── search-input.png │ │ │ ├── status-delete.png │ │ │ ├── status-fav-off.png │ │ │ ├── status-fav-on.png │ │ │ ├── status-reply.png │ │ │ ├── status-retweet.png │ │ │ ├── tab-icon-prefs.png │ │ │ ├── tab-icon-tools.png │ │ │ ├── tab-icon-user.png │ │ │ ├── text-input-bg.png │ │ │ ├── timeline-dm-bg.png │ │ │ ├── view-switches.png │ │ │ ├── accounts-current.png │ │ │ ├── scrollbar │ │ │ │ ├── corner.png │ │ │ │ ├── track.png │ │ │ │ ├── cap-top.png │ │ │ │ ├── cap-bottom.png │ │ │ │ ├── thumb-active.png │ │ │ │ ├── thumb-inactive.png │ │ │ │ ├── button-vertical-top-down.png │ │ │ │ ├── button-vertical-top-up.png │ │ │ │ ├── button-vertical-bottom-up.png │ │ │ │ ├── button-vertical-bottom-down.png │ │ │ │ ├── button-vertical-top-up-square.png │ │ │ │ └── button-vertical-bottom-down-square.png │ │ │ ├── status-dm-hollow.png │ │ │ ├── status-reply-at.png │ │ │ ├── tab-icon-public.png │ │ │ ├── tab-icon-replies.png │ │ │ ├── tab-icon-search.png │ │ │ ├── close-white-small.png │ │ │ ├── entry-selected-bg.png │ │ │ ├── loading-white-12x12.png │ │ │ ├── loading-white-50x50.png │ │ │ ├── search-input-close.png │ │ │ ├── status-retweet-rt.png │ │ │ ├── tab-icon-favorites.png │ │ │ ├── tab-icon-followers.png │ │ │ ├── tab-icon-following.png │ │ │ ├── tab-icon-timeline.png │ │ │ ├── tab-icon-userlists.png │ │ │ ├── text-input-top-bg.png │ │ │ ├── timeline-mention-bg.png │ │ │ ├── disclosure-triangles.png │ │ │ ├── prefs-panel-legend-bg.png │ │ │ ├── search-input-inactive.png │ │ │ ├── timeline-favorite-bg.png │ │ │ ├── window-controls-close.png │ │ │ ├── window-controls-zoom.png │ │ │ ├── tab-icon-followers-eye.png │ │ │ ├── tab-icon-prefs-selected.png │ │ │ ├── tab-icon-public-selected.png │ │ │ ├── tab-icon-search-selected.png │ │ │ ├── tab-icon-user-selected.png │ │ │ ├── thickboxLoadingAnimation.gif │ │ │ ├── window-controls-minimize.png │ │ │ ├── status-retweet-curvedarrow.png │ │ │ ├── status-retweet-rightarrow.png │ │ │ ├── tab-icon-replies-selected.png │ │ │ ├── tab-icon-timeline-selected.png │ │ │ ├── tab-icon-favorites-selected.png │ │ │ ├── tab-icon-followers-selected.png │ │ │ ├── tab-icon-following-selected.png │ │ │ ├── tab-icon-userlists-selected.png │ │ │ ├── timeline-favorite-bg-inset100.png │ │ │ ├── timeline-mention-bg-inset100.png │ │ │ └── tab-icon-followers-eye-selected.png │ │ ├── info.js │ │ └── css │ │ │ ├── scrollbars.css │ │ │ └── pagination.css │ └── Terminal64 │ │ ├── images │ │ ├── checkbox.png │ │ ├── lock-black.png │ │ ├── lock-white.png │ │ ├── resize-ns.png │ │ ├── resize-se.png │ │ ├── retweeted.png │ │ ├── status-dm.png │ │ ├── buttons │ │ │ ├── large.png │ │ │ ├── small.png │ │ │ ├── large-active.png │ │ │ ├── large-prefs.png │ │ │ ├── small-active.png │ │ │ ├── large-disabled.png │ │ │ ├── small-disabled.png │ │ │ ├── large-prefs-active.png │ │ │ └── large-prefs-disabled.png │ │ ├── close-black.png │ │ ├── panel-menu │ │ │ ├── bg.png │ │ │ ├── button.png │ │ │ └── button-active.png │ │ ├── status-delete.png │ │ ├── status-edit.png │ │ ├── status-fav-on.png │ │ ├── tab-icon-user.png │ │ ├── leopaz-preview.png │ │ ├── menu-checkmark.png │ │ ├── profiles │ │ │ ├── faves.png │ │ │ └── tools.png │ │ ├── refresh-6C5EB5.png │ │ ├── status-fav-off.png │ │ ├── status-reply-at.png │ │ ├── status-retweet.png │ │ ├── tab-icon-public.png │ │ ├── tab-icon-search.png │ │ ├── tab-icon-tools.png │ │ ├── accounts-current.png │ │ ├── close-white-small.png │ │ ├── domwindowoverlay.png │ │ ├── scrollbar │ │ │ ├── corner.png │ │ │ ├── scrollbar-bg.png │ │ │ ├── button-vertical-top-up.png │ │ │ ├── button-vertical-bottom-up.png │ │ │ ├── button-vertical-top-down.png │ │ │ ├── button-vertical-bottom-down.png │ │ │ ├── button-vertical-top-up-square.png │ │ │ └── button-vertical-bottom-down-square.png │ │ ├── status-dm-hollow.png │ │ ├── tab-icon-favorites.png │ │ ├── tab-icon-followers.png │ │ ├── tab-icon-timeline.png │ │ ├── tab-icon-userlists.png │ │ ├── disclosure-triangles.png │ │ ├── loading-white-12x12.png │ │ ├── loading-white-50x50.png │ │ └── tab-icon-followers-selected.png │ │ ├── fonts │ │ ├── C64_Pro_v1.0-STYLE.ttf │ │ ├── C64_User_v1.0-STYLE.ttf │ │ ├── C64_Pro_Mono_v1.0-STYLE.ttf │ │ ├── C64_User_Mono_v1.0-STYLE.ttf │ │ ├── C64_Elite_Mono_v1.0-STYLE.ttf │ │ └── license.txt │ │ ├── info.js │ │ └── css │ │ └── pagination.css ├── test.bat ├── bin │ └── growlnotify ├── sounds │ ├── wilhelm.mp3 │ └── TokyoTrainStation │ │ ├── New.mp3 │ │ ├── Off.mp3 │ │ ├── On.mp3 │ │ ├── CRcv.mp3 │ │ └── CSnd.mp3 ├── images │ ├── beta-ribbon.png │ ├── tab-icon-dms.png │ ├── tab-icon-user.png │ ├── glyphish │ │ ├── camera.png │ │ └── photos.png │ ├── spaz-icon-alpha.png │ ├── tab-icon-prefs.png │ ├── tab-icon-public.png │ ├── tab-icon-replies.png │ ├── tab-icon-search.png │ ├── popbox-img │ │ ├── body-bg.png │ │ ├── loading.gif │ │ └── spaz-icon-alpha.png │ ├── spaz-icon-alpha_16.png │ ├── spaz-icon-alpha_32.png │ ├── spaz-icon-alpha_48.png │ ├── spaz-icon-flat-512.png │ ├── tab-icon-followers.png │ ├── tab-icon-following.png │ ├── tab-icon-timeline.png │ ├── spaz-icon-alpha-half.png │ └── emoticons │ │ └── simple-smileys │ │ ├── eee.png │ │ ├── ww.png │ │ ├── ww2.png │ │ ├── xp.png │ │ ├── Thumbs.db │ │ ├── angel.png │ │ ├── angry.png │ │ ├── cool.png │ │ ├── crying.png │ │ ├── cute.png │ │ ├── devil.png │ │ ├── evil.png │ │ ├── gasp.png │ │ ├── greedy.png │ │ ├── grin.png │ │ ├── heart.png │ │ ├── joyful.png │ │ ├── sick.png │ │ ├── smile.png │ │ ├── stupid.png │ │ ├── tired.png │ │ ├── upside.png │ │ ├── wink.png │ │ ├── confused.png │ │ ├── joyful_2.png │ │ ├── joyful_3.png │ │ ├── shocked.png │ │ ├── unhappy.png │ │ ├── cute_smart.png │ │ ├── lips_sealed.png │ │ ├── madly_happy.png │ │ ├── shocked_2.png │ │ ├── speechless.png │ │ ├── tongue_out.png │ │ ├── uncertain.png │ │ ├── uncertain_2.png │ │ ├── pinching_eyes.png │ │ ├── pinching_grin.png │ │ ├── pinching_eyes_2.png │ │ └── tongue_out_wink.png ├── spaz-icon-flat-512.png ├── spazcore │ └── spazcore-titanium.js ├── vendors │ ├── jquery │ │ ├── menu │ │ │ ├── myshadow.png │ │ │ ├── arrowdown.png │ │ │ ├── arrow_right.gif │ │ │ └── style.css │ │ ├── jquery.fxqueues.js │ │ ├── jquery.hint.js │ │ ├── jquery.center.js │ │ └── jquery.highlight-2.js │ ├── spry │ │ └── widgets │ │ │ ├── textareavalidation │ │ │ └── SpryValidationTextArea.html │ │ │ ├── textfieldvalidation │ │ │ └── SpryValidationTextField.html │ │ │ └── tabbedpanels │ │ │ └── SpryTabbedPanels.html │ ├── SpazGrowl.js │ └── lawnchair │ │ └── adaptors │ │ ├── UserDataStorage.js │ │ └── CookieAdaptor.js ├── LICENSE.txt ├── license-markdown.txt └── license-showdown.txt ├── .gitignore ├── CHANGELOG.txt ├── manifest ├── tiapp.xml ├── timanifest ├── README.md └── LICENSE.txt /Resources/app/helpers/spaz.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Resources/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/theme.js: -------------------------------------------------------------------------------- 1 | // Not used yet -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | tmp 3 | auth_config.js 4 | *.sublime-project 5 | -------------------------------------------------------------------------------- /Resources/test.bat: -------------------------------------------------------------------------------- 1 | @C:\airsdk15\bin\adl.exe application.xml 2 | 3 | @pause -------------------------------------------------------------------------------- /Resources/themes/whitespace/theme.js: -------------------------------------------------------------------------------- 1 | // Not used yet 2 | sch.debug('loaded whitespace/theme.js'); -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /Resources/bin/growlnotify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/bin/growlnotify -------------------------------------------------------------------------------- /Resources/sounds/wilhelm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/sounds/wilhelm.mp3 -------------------------------------------------------------------------------- /Resources/images/beta-ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/beta-ribbon.png -------------------------------------------------------------------------------- /Resources/spaz-icon-flat-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/spaz-icon-flat-512.png -------------------------------------------------------------------------------- /Resources/images/tab-icon-dms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/tab-icon-dms.png -------------------------------------------------------------------------------- /Resources/images/tab-icon-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/tab-icon-user.png -------------------------------------------------------------------------------- /Resources/images/glyphish/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/glyphish/camera.png -------------------------------------------------------------------------------- /Resources/images/glyphish/photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/glyphish/photos.png -------------------------------------------------------------------------------- /Resources/images/spaz-icon-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/spaz-icon-alpha.png -------------------------------------------------------------------------------- /Resources/images/tab-icon-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/tab-icon-prefs.png -------------------------------------------------------------------------------- /Resources/images/tab-icon-public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/tab-icon-public.png -------------------------------------------------------------------------------- /Resources/images/tab-icon-replies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/tab-icon-replies.png -------------------------------------------------------------------------------- /Resources/images/tab-icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/tab-icon-search.png -------------------------------------------------------------------------------- /Resources/images/popbox-img/body-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/popbox-img/body-bg.png -------------------------------------------------------------------------------- /Resources/images/popbox-img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/popbox-img/loading.gif -------------------------------------------------------------------------------- /Resources/images/spaz-icon-alpha_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/spaz-icon-alpha_16.png -------------------------------------------------------------------------------- /Resources/images/spaz-icon-alpha_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/spaz-icon-alpha_32.png -------------------------------------------------------------------------------- /Resources/images/spaz-icon-alpha_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/spaz-icon-alpha_48.png -------------------------------------------------------------------------------- /Resources/images/spaz-icon-flat-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/spaz-icon-flat-512.png -------------------------------------------------------------------------------- /Resources/images/tab-icon-followers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/tab-icon-followers.png -------------------------------------------------------------------------------- /Resources/images/tab-icon-following.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/tab-icon-following.png -------------------------------------------------------------------------------- /Resources/images/tab-icon-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/tab-icon-timeline.png -------------------------------------------------------------------------------- /Resources/spazcore/spazcore-titanium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/spazcore/spazcore-titanium.js -------------------------------------------------------------------------------- /Resources/themes/spaz/images/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/popup.png -------------------------------------------------------------------------------- /Resources/images/spaz-icon-alpha-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/spaz-icon-alpha-half.png -------------------------------------------------------------------------------- /Resources/sounds/TokyoTrainStation/New.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/sounds/TokyoTrainStation/New.mp3 -------------------------------------------------------------------------------- /Resources/sounds/TokyoTrainStation/Off.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/sounds/TokyoTrainStation/Off.mp3 -------------------------------------------------------------------------------- /Resources/sounds/TokyoTrainStation/On.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/sounds/TokyoTrainStation/On.mp3 -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/loading.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/popup.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/checkbox.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/loading.gif -------------------------------------------------------------------------------- /Resources/themes/spaz/images/resize-ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/resize-ns.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/resize-se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/resize-se.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/retweeted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/retweeted.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/status-dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/status-dm.png -------------------------------------------------------------------------------- /Resources/vendors/jquery/menu/myshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/vendors/jquery/menu/myshadow.png -------------------------------------------------------------------------------- /Resources/sounds/TokyoTrainStation/CRcv.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/sounds/TokyoTrainStation/CRcv.mp3 -------------------------------------------------------------------------------- /Resources/sounds/TokyoTrainStation/CSnd.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/sounds/TokyoTrainStation/CSnd.mp3 -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/checkbox.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/resize-ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/resize-ns.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/resize-se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/resize-se.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/retweeted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/retweeted.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/status-dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/status-dm.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/popup.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/close-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/close-black.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/dropshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/dropshadow.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/lock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/lock-black.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/lock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/lock-white.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/status-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/status-edit.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/userimg-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/userimg-bg.png -------------------------------------------------------------------------------- /Resources/vendors/jquery/jquery.fxqueues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/vendors/jquery/jquery.fxqueues.js -------------------------------------------------------------------------------- /Resources/vendors/jquery/menu/arrowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/vendors/jquery/menu/arrowdown.png -------------------------------------------------------------------------------- /Resources/app/libs/Emoticons.SimpleSmileys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/app/libs/Emoticons.SimpleSmileys.js -------------------------------------------------------------------------------- /Resources/images/popbox-img/spaz-icon-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/popbox-img/spaz-icon-alpha.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/close-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/close-black.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/dropshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/dropshadow.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/lock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/lock-black.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/lock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/lock-white.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/search-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/search-input.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/status-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/status-edit.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/status-reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/status-reply.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/userimg-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/userimg-bg.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/checkbox.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/checkbox.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/loading.gif -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/resize-ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/resize-ns.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/resize-se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/resize-se.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/retweeted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/retweeted.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/status-dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/status-dm.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/buttons/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/buttons/large.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/buttons/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/buttons/small.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/entry-even-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/entry-even-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/entry-odd-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/entry-odd-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/leopaz-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/leopaz-preview.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/loading-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/loading-16x16.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/menu-checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/menu-checkmark.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/panel-menu/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/panel-menu/bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/profiles/faves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/profiles/faves.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/profiles/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/profiles/tools.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/refresh-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/refresh-white.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/search-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/search-input.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/status-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/status-delete.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/status-fav-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/status-fav-off.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/status-fav-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/status-fav-on.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/status-reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/status-reply.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/status-retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/status-retweet.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-prefs.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-tools.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-user.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/text-input-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/text-input-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/timeline-dm-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/timeline-dm-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/view-switches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/view-switches.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/loading.gif -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/pinger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/pinger.gif -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/spinner.gif -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/spinner2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/spinner2.gif -------------------------------------------------------------------------------- /Resources/vendors/jquery/menu/arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/vendors/jquery/menu/arrow_right.gif -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/eee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/eee.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/ww.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/ww.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/ww2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/ww2.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/xp.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/loading.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/buttons/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/buttons/large.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/buttons/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/buttons/small.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/leopaz-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/leopaz-preview.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/loading-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/loading-16x16.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/menu-checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/menu-checkmark.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/panel-menu/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/panel-menu/bg.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/profiles/faves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/profiles/faves.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/profiles/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/profiles/tools.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/refresh-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/refresh-white.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/status-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/status-delete.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/status-fav-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/status-fav-off.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/status-fav-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/status-fav-on.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/status-retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/status-retweet.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-prefs.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-tools.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-user.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/text-input-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/text-input-bg.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/timeline-dm-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/timeline-dm-bg.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/view-switches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/view-switches.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/lock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/lock-black.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/lock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/lock-white.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/resize-ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/resize-ns.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/resize-se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/resize-se.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/retweeted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/retweeted.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/status-dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/status-dm.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/close-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/close-black.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/dropshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/dropshadow.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/lock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/lock-black.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/lock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/lock-white.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/status-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/status-edit.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/userimg-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/userimg-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/accounts-current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/accounts-current.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/scrollbar/corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/scrollbar/corner.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/scrollbar/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/scrollbar/track.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/status-dm-hollow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/status-dm-hollow.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/status-reply-at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/status-reply-at.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-public.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-replies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-replies.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-search.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/dropshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/dropshadow.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/icon-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/icon-lock.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/resize-se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/resize-se.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/status-dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/status-dm.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/Thumbs.db -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/angel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/angel.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/angry.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/cool.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/crying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/crying.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/cute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/cute.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/devil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/devil.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/evil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/evil.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/gasp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/gasp.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/greedy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/greedy.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/grin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/grin.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/heart.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/joyful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/joyful.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/sick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/sick.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/smile.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/stupid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/stupid.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/tired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/tired.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/upside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/upside.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/wink.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/icon-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/icon-lock.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/resize-se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/resize-se.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/status-dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/status-dm.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/accounts-current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/accounts-current.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/close-white-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/close-white-small.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/panel-menu/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/panel-menu/button.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/scrollbar/cap-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/scrollbar/cap-top.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/scrollbar/corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/scrollbar/corner.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/scrollbar/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/scrollbar/track.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/status-dm-hollow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/status-dm-hollow.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/status-reply-at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/status-reply-at.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/status-retweet-rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/status-retweet-rt.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-public.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-search.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-timeline.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/text-input-top-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/text-input-top-bg.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/buttons/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/buttons/large.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/buttons/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/buttons/small.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/close-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/close-black.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/panel-menu/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/panel-menu/bg.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/status-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/status-delete.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/status-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/status-edit.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/status-fav-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/status-fav-on.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/tab-icon-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/tab-icon-user.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/buttons/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/buttons/large.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/buttons/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/buttons/small.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/entry-even-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/entry-even-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/entry-odd-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/entry-odd-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/leopaz-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/leopaz-preview.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/loading-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/loading-16x16.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/menu-checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/menu-checkmark.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/panel-menu/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/panel-menu/bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/profiles/faves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/profiles/faves.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/profiles/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/profiles/tools.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/refresh-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/refresh-white.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/search-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/search-input.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/status-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/status-delete.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/status-fav-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/status-fav-off.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/status-fav-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/status-fav-on.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/status-reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/status-reply.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/status-retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/status-retweet.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-prefs.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-tools.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-user.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/text-input-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/text-input-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/timeline-dm-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/timeline-dm-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/view-switches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/view-switches.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/buttons/large-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/buttons/large-prefs.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/close-white-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/close-white-small.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/entry-selected-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/entry-selected-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/loading-white-12x12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/loading-white-12x12.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/loading-white-50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/loading-white-50x50.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/panel-menu/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/panel-menu/button.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/scrollbar/cap-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/scrollbar/cap-top.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/search-input-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/search-input-close.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/status-retweet-rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/status-retweet-rt.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-favorites.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-followers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-followers.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-following.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-following.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-timeline.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-userlists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-userlists.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/text-input-top-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/text-input-top-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/timeline-mention-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/timeline-mention-bg.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/status-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/status-delete.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/status-fav-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/status-fav-on.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/status-reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/status-reply.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/tab-icon-dms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/tab-icon-dms.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/tab-icon-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/tab-icon-user.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/confused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/confused.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/joyful_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/joyful_2.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/joyful_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/joyful_3.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/shocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/shocked.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/unhappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/unhappy.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/status-reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/status-reply.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/tab-icon-dms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/tab-icon-dms.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/buttons/large-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/buttons/large-prefs.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/followstatus-friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/followstatus-friend.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/followstatus-mutual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/followstatus-mutual.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/loading-white-50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/loading-white-50x50.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/search-input-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/search-input-close.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-favorites.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-followers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-followers.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-userlists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-userlists.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/timeline-mention-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/timeline-mention-bg.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/leopaz-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/leopaz-preview.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/menu-checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/menu-checkmark.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/profiles/faves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/profiles/faves.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/profiles/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/profiles/tools.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/refresh-6C5EB5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/refresh-6C5EB5.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/status-fav-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/status-fav-off.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/status-reply-at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/status-reply-at.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/status-retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/status-retweet.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/tab-icon-public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/tab-icon-public.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/tab-icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/tab-icon-search.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/tab-icon-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/tab-icon-tools.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/accounts-current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/accounts-current.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/scrollbar/corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/scrollbar/corner.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/scrollbar/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/scrollbar/track.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/status-dm-hollow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/status-dm-hollow.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/status-reply-at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/status-reply-at.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-public.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-replies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-replies.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-search.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/buttons/large-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/buttons/large-active.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/buttons/small-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/buttons/small-active.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/disclosure-triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/disclosure-triangles.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/prefs-panel-legend-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/prefs-panel-legend-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/scrollbar/cap-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/scrollbar/cap-bottom.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/search-input-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/search-input-inactive.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/timeline-favorite-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/timeline-favorite-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/window-controls-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/window-controls-close.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/window-controls-zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/window-controls-zoom.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/status-fav-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/status-fav-off.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/status-retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/status-retweet.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/tab-icon-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/tab-icon-prefs.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/tab-icon-public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/tab-icon-public.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/tab-icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/tab-icon-search.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/user-detail-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/user-detail-bg.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/cute_smart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/cute_smart.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/lips_sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/lips_sealed.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/madly_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/madly_happy.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/shocked_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/shocked_2.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/speechless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/speechless.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/tongue_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/tongue_out.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/uncertain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/uncertain.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/uncertain_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/uncertain_2.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/status-fav-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/status-fav-off.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/status-fav-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/status-fav-on.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/status-retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/status-retweet.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/tab-icon-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/tab-icon-prefs.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/tab-icon-public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/tab-icon-public.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/tab-icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/tab-icon-search.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/tab-icon-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/tab-icon-user.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/buttons/large-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/buttons/large-active.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/buttons/large-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/buttons/large-disabled.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/buttons/small-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/buttons/small-active.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/buttons/small-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/buttons/small-disabled.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/disclosure-triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/disclosure-triangles.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/followstatus-follower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/followstatus-follower.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/prefs-panel-legend-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/prefs-panel-legend-bg.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/scrollbar/cap-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/scrollbar/cap-bottom.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/scrollbar/thumb-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/scrollbar/thumb-active.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/search-input-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/search-input-inactive.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-followers-eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-followers-eye.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-user-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-user-selected.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/timeline-favorite-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/timeline-favorite-bg.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/window-controls-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/window-controls-close.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/window-controls-zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/window-controls-zoom.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/fonts/C64_Pro_v1.0-STYLE.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/fonts/C64_Pro_v1.0-STYLE.ttf -------------------------------------------------------------------------------- /Resources/themes/Terminal64/fonts/C64_User_v1.0-STYLE.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/fonts/C64_User_v1.0-STYLE.ttf -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/accounts-current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/accounts-current.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/close-white-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/close-white-small.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/domwindowoverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/domwindowoverlay.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/panel-menu/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/panel-menu/button.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/scrollbar/corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/scrollbar/corner.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/status-dm-hollow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/status-dm-hollow.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/tab-icon-favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/tab-icon-favorites.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/tab-icon-followers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/tab-icon-followers.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/tab-icon-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/tab-icon-timeline.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/tab-icon-userlists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/tab-icon-userlists.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/buttons/large-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/buttons/large-prefs.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/close-white-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/close-white-small.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/entry-selected-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/entry-selected-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/loading-white-12x12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/loading-white-12x12.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/loading-white-50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/loading-white-50x50.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/panel-menu/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/panel-menu/button.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/scrollbar/cap-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/scrollbar/cap-top.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/search-input-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/search-input-close.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/status-retweet-rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/status-retweet-rt.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-favorites.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-followers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-followers.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-following.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-following.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-timeline.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-userlists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-userlists.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/text-input-top-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/text-input-top-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/timeline-mention-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/timeline-mention-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/buttons/large-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/buttons/large-disabled.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/buttons/small-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/buttons/small-disabled.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/panel-menu/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/panel-menu/button-active.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/scrollbar/thumb-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/scrollbar/thumb-active.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/scrollbar/thumb-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/scrollbar/thumb-inactive.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-followers-eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-followers-eye.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-prefs-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-prefs-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-public-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-public-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-search-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-search-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-user-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-user-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/thickboxLoadingAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/thickboxLoadingAnimation.gif -------------------------------------------------------------------------------- /Resources/themes/spaz/images/window-controls-minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/window-controls-minimize.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/status-fav-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/status-fav-hover.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/tab-icon-followers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/tab-icon-followers.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/tab-icon-following.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/tab-icon-following.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/tab-icon-replies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/tab-icon-replies.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/tab-icon-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/tab-icon-timeline.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/pinching_eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/pinching_eyes.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/pinching_grin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/pinching_grin.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/status-fav-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/status-fav-hover.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/tab-icon-replies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/tab-icon-replies.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/tab-icon-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/tab-icon-timeline.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/panel-menu/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/panel-menu/button-active.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/scrollbar/thumb-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/scrollbar/thumb-inactive.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-prefs-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-prefs-selected.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-public-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-public-selected.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-search-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-search-selected.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/thickboxLoadingAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/thickboxLoadingAnimation.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/window-controls-minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/window-controls-minimize.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/buttons/large-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/buttons/large-active.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/buttons/large-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/buttons/large-prefs.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/buttons/small-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/buttons/small-active.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/disclosure-triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/disclosure-triangles.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/loading-white-12x12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/loading-white-12x12.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/loading-white-50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/loading-white-50x50.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/buttons/large-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/buttons/large-active.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/buttons/small-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/buttons/small-active.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/disclosure-triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/disclosure-triangles.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/prefs-panel-legend-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/prefs-panel-legend-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/scrollbar/cap-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/scrollbar/cap-bottom.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/search-input-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/search-input-inactive.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/timeline-favorite-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/timeline-favorite-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/window-controls-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/window-controls-close.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/window-controls-zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/window-controls-zoom.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/buttons/large-prefs-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/buttons/large-prefs-active.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/status-retweet-curvedarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/status-retweet-curvedarrow.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/status-retweet-rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/status-retweet-rightarrow.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-replies-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-replies-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-timeline-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-timeline-selected.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/pinching_eyes_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/pinching_eyes_2.png -------------------------------------------------------------------------------- /Resources/images/emoticons/simple-smileys/tongue_out_wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/images/emoticons/simple-smileys/tongue_out_wink.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/tab-icon-followers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/tab-icon-followers.png -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/images/tab-icon-following.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Dumb Terminal/images/tab-icon-following.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/buttons/large-prefs-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/buttons/large-prefs-active.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/status-retweet-curvedarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/status-retweet-curvedarrow.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/status-retweet-rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/status-retweet-rightarrow.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-favorites-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-favorites-selected.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-followers-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-followers-selected.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-timeline-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-timeline-selected.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-userlists-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-userlists-selected.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/fonts/C64_Pro_Mono_v1.0-STYLE.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/fonts/C64_Pro_Mono_v1.0-STYLE.ttf -------------------------------------------------------------------------------- /Resources/themes/Terminal64/fonts/C64_User_Mono_v1.0-STYLE.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/fonts/C64_User_Mono_v1.0-STYLE.ttf -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/buttons/large-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/buttons/large-disabled.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/buttons/small-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/buttons/small-disabled.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/scrollbar/scrollbar-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/scrollbar/scrollbar-bg.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/buttons/large-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/buttons/large-disabled.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/buttons/small-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/buttons/small-disabled.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/panel-menu/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/panel-menu/button-active.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/scrollbar/thumb-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/scrollbar/thumb-active.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/scrollbar/thumb-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/scrollbar/thumb-inactive.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-followers-eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-followers-eye.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-prefs-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-prefs-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-public-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-public-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-search-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-search-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-user-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-user-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/thickboxLoadingAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/thickboxLoadingAnimation.gif -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/window-controls-minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/window-controls-minimize.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/buttons/large-prefs-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/buttons/large-prefs-disabled.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-favorites-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-favorites-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-followers-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-followers-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-following-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-following-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-userlists-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-userlists-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/timeline-favorite-bg-inset100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/timeline-favorite-bg-inset100.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/timeline-mention-bg-inset100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/timeline-mention-bg-inset100.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/buttons/large-prefs-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/buttons/large-prefs-disabled.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/timeline-favorite-bg-inset100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/timeline-favorite-bg-inset100.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/timeline-mention-bg-inset100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/timeline-mention-bg-inset100.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/333333_7x7_arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/333333_7x7_arrow_up.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/666666_7x7_arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/666666_7x7_arrow_up.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/999999_7x7_arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/999999_7x7_arrow_up.gif -------------------------------------------------------------------------------- /Resources/themes/Terminal64/fonts/C64_Elite_Mono_v1.0-STYLE.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/fonts/C64_Elite_Mono_v1.0-STYLE.ttf -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/panel-menu/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/panel-menu/button-active.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/buttons/large-prefs-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/buttons/large-prefs-active.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/status-retweet-curvedarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/status-retweet-curvedarrow.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/status-retweet-rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/status-retweet-rightarrow.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-replies-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-replies-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-timeline-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-timeline-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/tab-icon-followers-eye-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/tab-icon-followers-eye-selected.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/images/thickboxLoadingAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/whitespace/images/thickboxLoadingAnimation.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/scrollbar/button-vertical-top-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/scrollbar/button-vertical-top-up.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/tab-icon-followers-eye-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/tab-icon-followers-eye-selected.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/333333_11x11_icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/333333_11x11_icon_doc.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/333333_11x11_icon_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/333333_11x11_icon_plus.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/333333_7x7_arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/333333_7x7_arrow_down.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/333333_7x7_arrow_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/333333_7x7_arrow_left.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/333333_7x7_arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/333333_7x7_arrow_right.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_doc.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_plus.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/666666_7x7_arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/666666_7x7_arrow_down.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/666666_7x7_arrow_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/666666_7x7_arrow_left.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/666666_7x7_arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/666666_7x7_arrow_right.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_doc.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_plus.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/999999_7x7_arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/999999_7x7_arrow_down.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/999999_7x7_arrow_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/999999_7x7_arrow_left.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/999999_7x7_arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/999999_7x7_arrow_right.gif -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/buttons/large-prefs-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/buttons/large-prefs-active.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/buttons/large-prefs-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/buttons/large-prefs-disabled.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/tab-icon-followers-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/tab-icon-followers-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/buttons/large-prefs-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/buttons/large-prefs-disabled.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-favorites-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-favorites-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-followers-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-followers-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-following-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-following-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-userlists-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-userlists-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/timeline-favorite-bg-inset100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/timeline-favorite-bg-inset100.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/timeline-mention-bg-inset100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/timeline-mention-bg-inset100.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/scrollbar/button-vertical-top-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/scrollbar/button-vertical-top-down.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/scrollbar/button-vertical-top-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/scrollbar/button-vertical-top-up.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/scrollbar/button-vertical-top-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/scrollbar/button-vertical-top-down.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/333333_11x11_icon_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/333333_11x11_icon_close.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/333333_11x11_icon_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/333333_11x11_icon_minus.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_close.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_minus.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_close.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_minus.gif -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/tab-icon-followers-eye-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/tab-icon-followers-eye-selected.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/scrollbar/button-vertical-bottom-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/scrollbar/button-vertical-bottom-up.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/scrollbar/button-vertical-bottom-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/scrollbar/button-vertical-bottom-down.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/scrollbar/button-vertical-bottom-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/scrollbar/button-vertical-bottom-up.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/222222_11x11_icon_resize_se.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/222222_11x11_icon_resize_se.gif -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/scrollbar/button-vertical-top-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/scrollbar/button-vertical-top-up.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/scrollbar/button-vertical-top-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/scrollbar/button-vertical-top-down.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/scrollbar/button-vertical-top-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/scrollbar/button-vertical-top-up.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/scrollbar/button-vertical-bottom-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/scrollbar/button-vertical-bottom-down.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/scrollbar/button-vertical-top-up-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/scrollbar/button-vertical-top-up-square.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/scrollbar/button-vertical-top-up-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/scrollbar/button-vertical-top-up-square.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/333333_11x11_icon_folder_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/333333_11x11_icon_folder_open.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_folder_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_folder_open.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_folder_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_folder_open.gif -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/scrollbar/button-vertical-bottom-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/scrollbar/button-vertical-bottom-up.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/scrollbar/button-vertical-top-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/scrollbar/button-vertical-top-down.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/scrollbar/button-vertical-bottom-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/scrollbar/button-vertical-bottom-up.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/333333_11x11_icon_arrows_updown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/333333_11x11_icon_arrows_updown.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/333333_11x11_icon_folder_closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/333333_11x11_icon_folder_closed.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_arrows_updown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_arrows_updown.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_folder_closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_folder_closed.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_arrows_updown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_arrows_updown.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_folder_closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_folder_closed.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/FFFFFF_40x100_textures_02_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/FFFFFF_40x100_textures_02_glass.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/scrollbar/button-vertical-bottom-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/scrollbar/button-vertical-bottom-down.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/scrollbar/button-vertical-bottom-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/scrollbar/button-vertical-bottom-down.png -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/scrollbar/button-vertical-top-up-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/scrollbar/button-vertical-top-up-square.png -------------------------------------------------------------------------------- /Resources/themes/spaz/images/scrollbar/button-vertical-bottom-down-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz/images/scrollbar/button-vertical-bottom-down-square.png -------------------------------------------------------------------------------- /Resources/themes/spaz/info.js: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Spaz", 3 | "author" : "Ed Finkler", 4 | "description" : "Default Spaz theme", 5 | "link" : "http://funkatron.com", 6 | "version" : "v2.0" 7 | } -------------------------------------------------------------------------------- /Resources/themes/Leopaz/images/scrollbar/button-vertical-bottom-down-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/images/scrollbar/button-vertical-bottom-down-square.png -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_arrows_leftright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/666666_11x11_icon_arrows_leftright.gif -------------------------------------------------------------------------------- /Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_arrows_leftright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Leopaz/jquery-ui/images/999999_11x11_icon_arrows_leftright.gif -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/scrollbar/button-vertical-top-up-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/scrollbar/button-vertical-top-up-square.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/info.js: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Spaz", 3 | "author" : "Ed Finkler", 4 | "description" : "Default Spaz theme", 5 | "link" : "http://funkatron.com", 6 | "version" : "v2.0" 7 | } -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/info.js: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Spaz", 3 | "author" : "Ed Finkler", 4 | "description" : "Default Spaz theme", 5 | "link" : "http://funkatron.com", 6 | "version" : "v2.0" 7 | } -------------------------------------------------------------------------------- /Resources/themes/Dumb Terminal/info.js: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Dumb Terminal Theme", 3 | "author" : "Ed Finkler", 4 | "description" : "Remeber when your monitor had one color?", 5 | "link" : "http://getspaz.com" 6 | } -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/images/scrollbar/button-vertical-bottom-down-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/spaz-mini/images/scrollbar/button-vertical-bottom-down-square.png -------------------------------------------------------------------------------- /Resources/themes/Terminal64/images/scrollbar/button-vertical-bottom-down-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spazproject/spaz-desktop-titanium/HEAD/Resources/themes/Terminal64/images/scrollbar/button-vertical-bottom-down-square.png -------------------------------------------------------------------------------- /Resources/themes/whitespace/info.js: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Whitespace Theme", 3 | "author" : "Ed Finkler", 4 | "description" : "Clean and light, with subtle shading. Or something", 5 | "link" : "http://getspaz.com" 6 | } -------------------------------------------------------------------------------- /Resources/themes/Leopaz/info.js: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Leopaz", 3 | "author" : "Ron DeVera", 4 | "description" : "Spaz theme based on Mac OS X 10.5 (Leopard)", 5 | "link" : "http://rondevera.com", 6 | "version" : "v0.3" 7 | } -------------------------------------------------------------------------------- /Resources/app/auth_config_sample.js: -------------------------------------------------------------------------------- 1 | /* 2 | Rename this file to auth_config.js 3 | and fill in the values below with your own 4 | xAuth-approved key and secret. 5 | */ 6 | var SPAZCORE_CONSUMERKEY_TWITTER = ''; 7 | var SPAZCORE_CONSUMERSECRET_TWITTER = ''; -------------------------------------------------------------------------------- /manifest: -------------------------------------------------------------------------------- 1 | #appname:Spaz 2 | #appid:com.funkatron.app.spaz.desktop 3 | #publisher:Funkatron Productions 4 | #image:spaz-icon-flat-512.png 5 | #url:http://getspaz.com 6 | #guid:b0dfc79d-57b2-4a4a-bc8b-71be7c5c620c 7 | #desc:EXPERIMENTAL BUILD 8 | #type:desktop 9 | runtime:1.1.0 10 | tiapp:1.1.0 11 | tifilesystem:1.1.0 12 | tiplatform:1.1.0 13 | tiui:1.1.0 14 | ticodec:1.1.0 15 | tidatabase:1.1.0 16 | timedia:1.1.0 17 | timonkey:1.1.0 18 | tinetwork:1.1.0 19 | tiprocess:1.1.0 20 | tiworker:1.1.0 21 | -------------------------------------------------------------------------------- /Resources/app/models/spaz.uploadservice.js: -------------------------------------------------------------------------------- 1 | var Spaz; if (!Spaz) Spaz = {}; 2 | 3 | /************* 4 | Spaz.Uploadservice 5 | *************/ 6 | if (!Spaz.Uploadservice) Spaz.Uploadservice = {}; 7 | 8 | 9 | 10 | Spaz.Uploadservice.services = { 11 | 'yfrog' : { 12 | 'url' : 'http://yfrog.com/api/upload' 13 | }, 14 | 'twitpic' : { 15 | 'url' : 'http://twitpic.com/api/upload' 16 | }, 17 | 'twitgoo' : { 18 | 'url' : 'http://twitgoo.com/api/upload' 19 | } 20 | } 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Resources/themes/Terminal64/css/pagination.css: -------------------------------------------------------------------------------- 1 | /*** Pagination ***/ 2 | 3 | div.loadmore-panel { 4 | margin: 0; 5 | padding: 10px; 6 | background:#6C5EB5; 7 | color:#352879; 8 | border: 2px solid #6C5EB5; 9 | text-align: center; 10 | } 11 | div.loadmore-panel input[type=button] { 12 | height: 23px; 13 | margin: 0; 14 | padding: 0 1em; 15 | background: #352879; 16 | color: #6C5EB5; 17 | border:0; 18 | font-size: 8pt; 19 | cursor: default; 20 | white-space: nowrap; 21 | 22 | } 23 | div.loadmore-panel input[type=button]:active { 24 | background: #6C5EB5; 25 | color: #352879; 26 | } 27 | -------------------------------------------------------------------------------- /Resources/app/libs/spaz.const.js: -------------------------------------------------------------------------------- 1 | var Spaz; if (!Spaz) Spaz = {}; 2 | 3 | /*********** 4 | Spaz.Const 5 | ***********/ 6 | if (!Spaz.Const) Spaz.Const = {}; 7 | 8 | // sound properties and methods 9 | // var sound-url-update = 'sound-update'; 10 | // var sound-url-startup = 'sound-startup'; 11 | // var sound-url-shutdown = 'sound-shutdown'; 12 | // var sound-url-new = 'sound-new'; 13 | // var sound-url-wilhelm = 'sound-wilhelm'; 14 | 15 | // user directories 16 | var USERDIR_PLUGINS = 'userplugins/'; 17 | var USERDIR_SMILEYS = 'usersmileys/'; 18 | var USERDIR_SOUND = 'usersounds/'; 19 | var USERDIR_THEMES = 'userthemes/'; 20 | -------------------------------------------------------------------------------- /Resources/app/models/DraftModel.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | 3 | window.DraftModel = new JazzRecord.Model({ 4 | table: 'drafts', 5 | columns: { 6 | account_id: 'string', 7 | text: 'text', 8 | updated_at: 'string', 9 | updated_at_unixtime: 'int' 10 | }, 11 | //events: { 12 | // onSave: function(){ 13 | // var now = new Date(); 14 | // this.updated_at = now.toString(); 15 | // this.updated_at_unixtime = +now; 16 | // } 17 | //}, 18 | // recordMethods: {}, 19 | modelMethods: { 20 | findById: function(id){ 21 | return this.findBy('id', id); 22 | }, 23 | countByAccountId: function(account_id){ 24 | return this.count({account_id: account_id}); 25 | } 26 | } 27 | }); 28 | 29 | })(); 30 | -------------------------------------------------------------------------------- /Resources/vendors/spry/widgets/textareavalidation/SpryValidationTextArea.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Spry Validation Text Area Reference Sample 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 |
16 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/css/scrollbars.css: -------------------------------------------------------------------------------- 1 | ::-webkit-scrollbar { 2 | width: 8px; 3 | height: 8px; 4 | -webkit-transition: all 0.3s ease-in-out; 5 | /* background-color: #000000;*/ 6 | } 7 | 8 | ::-webkit-scrollbar-button:start:decrement { 9 | -webkit-border-radius: 6px; 10 | height: 0px; 11 | display: block; 12 | background-color: transparent; 13 | } 14 | 15 | ::-webkit-scrollbar-button:end:increment { 16 | height: 7px; 17 | display: block; 18 | background-color: transparent; 19 | } 20 | 21 | ::-webkit-scrollbar-track-piece { 22 | margin-right: 10px !important; 23 | background-color: #000000; 24 | -webkit-border-radius: 5px; 25 | } 26 | 27 | ::-webkit-scrollbar-thumb:vertical, ::-webkit-scrollbar-thumb:horizontal { 28 | height: 50px; 29 | background-color: #9a9a9a; 30 | -webkit-border-radius: 5px; 31 | } 32 | 33 | ::-webkit-scrollbar-thumb:vertical:hover, ::-webkit-scrollbar-thumb:horizontal:hover { 34 | background-color: #5e5e5e; 35 | -webkit-box-shadow: 0 0 2px #ccc; 36 | } -------------------------------------------------------------------------------- /Resources/app/libs/spaz.timers.js: -------------------------------------------------------------------------------- 1 | /* 2 | Code almost entirely stolen from http://jsninja.com/. Great book. 3 | */ 4 | Spaz.Timers = { 5 | timerID: -1, 6 | timers: [], 7 | start: function() { 8 | // sch.dump('called start'); 9 | if (Spaz.Timers.timerID > -1) { 10 | // sch.dump('nothing queued'); 11 | return; 12 | } 13 | 14 | // sch.dump(Spaz.Timers.timers); 15 | sch.dump(Spaz.Timers.timerID); 16 | (function() { 17 | for (var i = 0; i < Spaz.Timers.timers.length; i++) { 18 | if (Spaz.Timers.timers[i]() === false) { 19 | // sch.dump('timer finished: dropping'); 20 | Spaz.Timers.timers.splice(i, 1); 21 | i--; 22 | } 23 | } 24 | 25 | // alert(arguments.callee); 26 | Spaz.Timers.timerID = setTimeout(arguments.callee, 0); 27 | })(); 28 | }, 29 | stop: function() { 30 | clearTimeout(Spaz.Timers.timerID); 31 | Spaz.Timers.timerID = -1; 32 | }, 33 | add: function(fn) { 34 | 35 | Spaz.Timers.timers.push(fn); 36 | Spaz.Timers.start(); 37 | } 38 | }; 39 | -------------------------------------------------------------------------------- /Resources/themes/Terminal64/fonts/license.txt: -------------------------------------------------------------------------------- 1 | 2 | Fonts in this package are (c) 2010 Style. 3 | 4 | You MAY NOT: sell this font; include/redistribute this font in any font collection regardless of pricing; provide the font for direct download from any web site. You MAY: link to "http://style64.org/c64-truetype" in order for others to download and install the font; embed this font or its .eot and .woff variants without any modification and using the same filename it was provided with for display on any web site using @font-face rules; use this font in static images and vector art; include this font without any modification and using the same filename it was provided with as part of a software package but ONLY if said software package is freely provided to end users. You may also contact us to negotiate a (possibly commercial) license for your use outside of these guidelines at "http://style64.org/contact-style". 5 | 6 | At all times the most recent version of this license can be found at "http://style64.org/c64-truetype/license". 7 | -------------------------------------------------------------------------------- /Resources/vendors/spry/widgets/textfieldvalidation/SpryValidationTextField.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Spry Validation Textfield Reference 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | A value is required. 15 |
16 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /tiapp.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.funkatron.app.spaz.desktop 5 | Spaz 6 | 0.10.0 7 | Funkatron Productions 8 | http://getspaz.com 9 | spaz-icon-flat-512.png 10 | © Funkatron Productions 11 | false 12 | 13 | 14 | main 15 | Spaz 16 | app://index.html 17 | 360 18 | 3000 19 | 320 20 | 580 21 | 3000 22 | 200 23 | false 24 | true 25 | true 26 | true 27 | true 28 | true 29 | true 30 | false 31 | 32 | 33 | -------------------------------------------------------------------------------- /timanifest: -------------------------------------------------------------------------------- 1 | {"appname": "Spaz", "appid": "com.funkatron.app.spaz.desktop", "appversion": "0.10.0", "mid": "v2:a13fd717-505d-438d-a6c4-c03e8779f062|86233985a259f86957c414bb6a12b5e0", "publisher": "Funkatron Productions", "url": "http://getspaz.com", "desc": "EXPERIMENTAL BUILD", "release": false, "image": "spaz-icon-flat-512.png", "platforms": ["osx", "win32", "linux"], "visibility": "private", "runtime": {"version": "1.1.0", "package": "include"}, "guid": "b0dfc79d-57b2-4a4a-bc8b-71be7c5c620c", "modules": [{"name": "tiapp", "version": "1.1.0", "package": "include"}, {"name": "tifilesystem", "version": "1.1.0", "package": "include"}, {"name": "tiplatform", "version": "1.1.0", "package": "include"}, {"name": "tiui", "version": "1.1.0", "package": "include"}, {"name": "ticodec", "version": "1.1.0", "package": "include"}, {"name": "tidatabase", "version": "1.1.0", "package": "include"}, {"name": "timedia", "version": "1.1.0", "package": "include"}, {"name": "timonkey", "version": "1.1.0", "package": "include"}, {"name": "tinetwork", "version": "1.1.0", "package": "include"}, {"name": "tiprocess", "version": "1.1.0", "package": "include"}, {"name": "tiworker", "version": "1.1.0", "package": "include"}]} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Spaz Desktop 2 | ## for Appcelerator Titanium Desktop 3 | 4 | Spaz is an open source microblogging client written in JavaScript, HTML and CSS. This version runs on top of the Appcelerator Titanium Desktop web runtime platform. 5 | 6 | There are many, many problems with this code that need to be fixed. Much work needs to be done to convert AIR-specific code to Titanium equivalents. Bugs/issues should be filed in the [issue tracker for this project](https://github.com/funkatron/spaz-desktop-titanium/issues), so we have a running tally of what to fix. 7 | 8 | ## Notes on xAuth ## 9 | 10 | Spaz uses [xAuth](http://dev.twitter.com/pages/xauth) to authenticate with Twitter. We do not distribute our consumer key and secret per Twitter's request. You will need to: 11 | 12 | 1. [Register an app at Twitter](https://twitter.com/apps/new), and get your own consumer key and secret 13 | 2. Request xAuth access by emailing ([more info](http://dev.twitter.com/pages/xauth)) 14 | 3. When you get your keys, rename `app/auth_config_sample.js` to `app/auth_config.js` and fill in the correct values 15 | 16 | If you don't want to go through these steps, you'll need to use end-user test builds, and won't be able to run from source. -------------------------------------------------------------------------------- /Resources/themes/spaz/css/pagination.css: -------------------------------------------------------------------------------- 1 | /*** Pagination ***/ 2 | 3 | div.loadmore-panel { 4 | margin: 0; 5 | padding: 10px; 6 | background: -webkit-gradient( 7 | linear, left top, left bottom, 8 | from(rgba(32,32,32, 1)), 9 | to(rgba(16,16,16, 1)), 10 | color-stop(0.1, rgba(49, 49, 49, 1)), 11 | color-stop(0.6, rgba(24,24,24, 1)) 12 | ); 13 | border-top: 1px solid #000000; 14 | text-align: center; 15 | } 16 | div.loadmore-panel input[type=button] { 17 | height: 23px; 18 | margin: 0; 19 | padding: 0 1em; 20 | background: -webkit-gradient( 21 | linear, left top, left bottom, 22 | from(rgba(58,60,44, 1)), to(rgba(58,60,44, 1)), 23 | color-stop(0.1, rgba(87,90,71, 1)), 24 | color-stop(0.6, rgba(58,60,44, 1)) 25 | ); 26 | border: 1px solid rgba(16,16,16, 1); 27 | border-radius: 4px; 28 | -webkit-border-radius: 4px; 29 | font-size: 12px; 30 | color: #fff; 31 | cursor: default; 32 | white-space: nowrap; 33 | 34 | } 35 | div.loadmore-panel input[type=button]:active { 36 | background: -webkit-gradient( 37 | linear, left top, left bottom, 38 | from(rgba(58,60,44, 1)), to(rgba(58,60,44, 1)), 39 | color-stop(0.6, rgba(87,90,71, 1)), 40 | color-stop(0.1, rgba(58,60,44, 1)) 41 | ); 42 | border: 2px solid rgba(32,32,32, 1); 43 | } 44 | -------------------------------------------------------------------------------- /Resources/themes/spaz-mini/css/pagination.css: -------------------------------------------------------------------------------- 1 | /*** Pagination ***/ 2 | 3 | div.loadmore-panel { 4 | margin: 0; 5 | padding: 10px; 6 | background: -webkit-gradient( 7 | linear, left top, left bottom, 8 | from(rgba(32,32,32, 1)), 9 | to(rgba(16,16,16, 1)), 10 | color-stop(0.1, rgba(49, 49, 49, 1)), 11 | color-stop(0.6, rgba(24,24,24, 1)) 12 | ); 13 | border-top: 1px solid #000000; 14 | text-align: center; 15 | } 16 | div.loadmore-panel input[type=button] { 17 | height: 23px; 18 | margin: 0; 19 | padding: 0 1em; 20 | background: -webkit-gradient( 21 | linear, left top, left bottom, 22 | from(rgba(58,60,44, 1)), to(rgba(58,60,44, 1)), 23 | color-stop(0.1, rgba(87,90,71, 1)), 24 | color-stop(0.6, rgba(58,60,44, 1)) 25 | ); 26 | border: 1px solid rgba(16,16,16, 1); 27 | border-radius: 4px; 28 | -webkit-border-radius: 4px; 29 | font-size: 12px; 30 | color: #fff; 31 | cursor: default; 32 | white-space: nowrap; 33 | 34 | } 35 | div.loadmore-panel input[type=button]:active { 36 | background: -webkit-gradient( 37 | linear, left top, left bottom, 38 | from(rgba(58,60,44, 1)), to(rgba(58,60,44, 1)), 39 | color-stop(0.6, rgba(87,90,71, 1)), 40 | color-stop(0.1, rgba(58,60,44, 1)) 41 | ); 42 | border: 2px solid rgba(32,32,32, 1); 43 | } 44 | -------------------------------------------------------------------------------- /Resources/vendors/jquery/jquery.hint.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author Remy Sharp 3 | * @url http://remysharp.com/2007/01/25/jquery-tutorial-text-box-hints/ 4 | */ 5 | 6 | (function ($) { 7 | 8 | $.fn.hint = function (blurClass) { 9 | if (!blurClass) blurClass = 'blur'; 10 | 11 | return this.each(function () { 12 | var $input = $(this), 13 | title = $input.attr('title'), 14 | $form = $(this.form), 15 | $win = $(window); 16 | 17 | function remove() { 18 | if (this.value === title && $input.hasClass(blurClass)) { 19 | $input.val('').removeClass(blurClass); 20 | } 21 | } 22 | 23 | // only apply logic if the element has the attribute 24 | if (title) { 25 | // on blur, set value to title attr if text is blank 26 | $input.blur(function () { 27 | if (this.value === '') { 28 | $input.val(title).addClass(blurClass); 29 | } 30 | }).focus(remove).blur(); // now change all inputs to title 31 | 32 | // clear the pre-defined text when form is submitted 33 | $form.submit(remove); 34 | $win.unload(remove); // handles Firefox's autocomplete 35 | } 36 | }); 37 | }; 38 | 39 | })(jQuery); -------------------------------------------------------------------------------- /Resources/vendors/spry/widgets/tabbedpanels/SpryTabbedPanels.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Spry Tabbbed Panels 6 | 7 | 8 | 9 | 10 |

11 |
12 |
    13 |
  • Tab 1
  • 14 |
  • Tab 2
  • 15 |
  • Tab 3
  • 16 |
  • Tab 4
  • 17 |
18 |
19 |
Tab 1 Content
20 |
Tab 2 Content
21 |
Tab 3 Content
22 |
Tab 4 Content
23 |
24 |
25 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Resources/app/views/spaz.wilhelm.js: -------------------------------------------------------------------------------- 1 | var Spaz; 2 | if (!Spaz) Spaz = {}; 3 | 4 | /*********** 5 | Spaz.Wilhelm 6 | ***********/ 7 | if (!Spaz.Wilhelm) Spaz.Wilhelm = {}; 8 | 9 | 10 | Spaz.Wilhelm.start = function() { 11 | sch.debug('Applying Flash Filter Dropshadow and Negative'); 12 | 13 | if (Spaz.Prefs.get('window-dropshadow')) { 14 | sch.dump('Applying Flash Filter Dropshadow'); 15 | 16 | window.htmlLoader.filters = window.runtime.Array( 17 | new window.runtime.flash.filters.DropShadowFilter(3, 90, 0, .8, 6, 6), 18 | new window.runtime.flash.filters.ColorMatrixFilter(([ - 1, 0, 0, 0, 255, 0, -1, 0, 0, 255, 0, 0, -1, 0, 255, 0, 0, 0, 1, 0])) 19 | ); 20 | } else { 21 | window.htmlLoader.filters = window.runtime.Array( 22 | new window.runtime.flash.filters.ColorMatrixFilter(([ - 1, 0, 0, 0, 255, 0, -1, 0, 0, 255, 0, 0, -1, 0, 255, 0, 0, 0, 1, 0])) 23 | ); 24 | } 25 | 26 | var $wilhelm = $('#wilhelm'); 27 | $wilhelm.center(); 28 | $wilhelm.show(300); 29 | setTimeout(Spaz.Wilhelm.end, 960); // end with a timeout instead of relying on sound to finish 30 | }; 31 | 32 | Spaz.Wilhelm.end = function() { 33 | if (Spaz.Prefs.get('window-dropshadow')) { 34 | sch.dump('Applying Flash Filter Dropshadow'); 35 | 36 | window.htmlLoader.filters = window.runtime.Array( 37 | new window.runtime.flash.filters.DropShadowFilter(3, 90, 0, .8, 6, 6) 38 | ); 39 | } 40 | $('#wilhelm').hide(); 41 | }; -------------------------------------------------------------------------------- /Resources/app/controllers/spaz.handlers.js: -------------------------------------------------------------------------------- 1 | var Spaz; if (!Spaz) Spaz = {}; 2 | 3 | /*********** 4 | Spaz.Handlers 5 | ***********/ 6 | if (!Spaz.Handlers) Spaz.Handlers = {}; 7 | 8 | 9 | 10 | 11 | /* 12 | This isn't used atm 13 | */ 14 | Spaz.Handlers.showContextMenu = function(event) { 15 | 16 | var el = event.data.jq[0]; 17 | var url = event.data.url; 18 | // hide any showing tooltips 19 | sch.debug('hiding tooltip'); 20 | 21 | $('#tooltip').hide(); 22 | 23 | // show the link context menu 24 | sch.debug('opening context menu'); 25 | $('#linkContextMenu').css('left', event.pageX) 26 | .css('top', event.pageY) 27 | .show(); 28 | 29 | sch.debug('outerHTML:'+el.outerHTML); 30 | var urlarray = /http:\/\/([^'"]+)/i.exec(url); 31 | if (urlarray && urlarray.length > 0) { 32 | var elurl = urlarray[0]; 33 | 34 | sch.debug('url from element:'+elurl); 35 | 36 | $('#menu-copyLink').one('click', {url:elurl}, function(event) { 37 | Spaz.Sys.setClipboardText(event.data.url); 38 | sch.debug('Current Clipboard:'+Spaz.Sys.getClipboardText()); 39 | }); 40 | sch.debug('Set one-time click event on #menu-copyLink'); 41 | 42 | $(document).one('click', function() { 43 | $('#linkContextMenu').hide(); 44 | }); 45 | sch.debug('set one-time link context menu close event for click on document'); 46 | } else { 47 | sch.debug('no http link found'); 48 | } 49 | 50 | }; 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /Resources/app/views/spaz.editor.js: -------------------------------------------------------------------------------- 1 | var Spaz; if (!Spaz) Spaz = {}; 2 | 3 | 4 | /*********** 5 | Spaz.Editor 6 | ************/ 7 | if (!Spaz.Editor) Spaz.Editor = {}; 8 | 9 | 10 | Spaz.Editor.bold = function() { 11 | Spaz.Editor.$wrap('**', '**'); 12 | } 13 | 14 | 15 | Spaz.Editor.italics = function() { 16 | Spaz.Editor.$wrap('*', '*'); 17 | } 18 | 19 | Spaz.Editor.code = function() { 20 | Spaz.Editor.$wrap('`', '`'); 21 | } 22 | 23 | Spaz.Editor.link = function() { 24 | Spaz.Editor.$wrap('[', '](http://)', -8, -1); 25 | } 26 | 27 | 28 | Spaz.Editor.preview = function() { 29 | var converter = new Showdown.converter(); 30 | $('#preview').html(converter.makeHtml($('#entrybox').val())); 31 | } 32 | 33 | 34 | // selstart and selend are from the END! 35 | Spaz.Editor.$wrap = function(open, close, selstart, selend) { 36 | if (!selstart) { 37 | selstart = 0 38 | } 39 | if (!selend) { 40 | selend = 0 41 | } 42 | 43 | var editor = $('#entrybox') 44 | var start = editor[0].selectionStart; 45 | var end = editor[0].selectionEnd; 46 | var len = editor.val().length; 47 | var s1 = editor.val().substring(0,start); 48 | var s2 = editor.val().substring(start, end) 49 | var s3 = editor.val().substring(end, len); 50 | 51 | editor.val(s1 + open + s2 + close + s3) 52 | 53 | if (s2.length == 0) { 54 | editor[0].setSelectionRange((s1 + open).length, (s1 + open).length); 55 | } else { 56 | editor[0].setSelectionRange((s1 + open + s2 + close).length + selstart, (s1 + open + s2 + close).length + selend); 57 | } 58 | // preview() 59 | } 60 | 61 | 62 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2007-2011, Edward Finkler 2 | 3 | All rights reserved. 4 | 5 | Redistribution and use in source and binary forms, with or without 6 | modification, are permitted provided that the following conditions are met: 7 | 8 | * Redistributions of source code must retain the above copyright notice, this 9 | list of conditions and the following disclaimer. 10 | 11 | * Redistributions in binary form must reproduce the above copyright notice, 12 | this list of conditions and the following disclaimer in the documentation 13 | and/or other materials provided with the distribution. 14 | 15 | * Neither the name of Edward Finkler nor the names of its contributors may 16 | be used to endorse or promote products derived from this software without 17 | specific prior written permission. 18 | 19 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 20 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 22 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE 23 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 25 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 26 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 27 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- /Resources/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2007-2011, Edward Finkler 2 | 3 | All rights reserved. 4 | 5 | Redistribution and use in source and binary forms, with or without 6 | modification, are permitted provided that the following conditions are met: 7 | 8 | * Redistributions of source code must retain the above copyright notice, this 9 | list of conditions and the following disclaimer. 10 | 11 | * Redistributions in binary form must reproduce the above copyright notice, 12 | this list of conditions and the following disclaimer in the documentation 13 | and/or other materials provided with the distribution. 14 | 15 | * Neither the name of Edward Finkler nor the names of its contributors may 16 | be used to endorse or promote products derived from this software without 17 | specific prior written permission. 18 | 19 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 20 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 22 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE 23 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 25 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 26 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 27 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- /Resources/license-markdown.txt: -------------------------------------------------------------------------------- 1 | LICENSE 2 | 3 | Copyright © 2004, John Gruber 4 | http://daringfireball.net/ 5 | All rights reserved. 6 | 7 | Redistribution and use in source and binary forms, with or without 8 | modification, are permitted provided that the following conditions are met: 9 | 10 | Redistributions of source code must retain the above copyright notice, this 11 | list of conditions and the following disclaimer. 12 | 13 | Redistributions in binary form must reproduce the above copyright notice, this 14 | list of conditions and the following disclaimer in the documentation and/or 15 | other materials provided with the distribution. 16 | 17 | Neither the name “Markdown” nor the names of its contributors may be used to 18 | endorse or promote products derived from this software without specific prior 19 | written permission. 20 | 21 | This software is provided by the copyright holders and contributors “as is” 22 | and any express or implied warranties, including, but not limited to, the 23 | implied warranties of merchantability and fitness for a particular purpose are 24 | disclaimed. In no event shall the copyright owner or contributors be liable 25 | for any direct, indirect, incidental, special, exemplary, or consequential 26 | damages (including, but not limited to, procurement of substitute goods or 27 | services; loss of use, data, or profits; or business interruption) however 28 | caused and on any theory of liability, whether in contract, strict liability, 29 | or tort (including negligence or otherwise) arising in any way out of the use 30 | of this software, even if advised of the possibility of such damage. -------------------------------------------------------------------------------- /Resources/app/libs/Emoticons.js: -------------------------------------------------------------------------------- 1 | var Emoticons; if (!Emoticons) Emoticons = {}; 2 | 3 | // Might be going completely over the top with this char set... 4 | // var CHARS_TO_ESCAPE = /[\\=!^$*+?.:|(){}[\]]/g; 5 | var CHARS_TO_ESCAPE = /[\\=!^$*+?.:|(){}[\]]/g; 6 | //var CHARS_TO_ESCAPE = /[\\?|()]/g; 7 | 8 | // Create a regular expression to match all emoticons 9 | // defined for a particular emoticons set. 10 | // 11 | // Some characters must be escaped with a backslash "\"; many of 12 | // these may be present in emoticon character sequences. This function 13 | // adds the escape where necessary. Chars to be replaced are defined by 14 | // CHARS_TO_ESCAPE. 15 | Emoticons.buildRegexp = function(mappings) { 16 | var result = ""; 17 | for (smiley in mappings) { 18 | if (result > "") { 19 | result += "|"; 20 | } 21 | result += smiley.replace(CHARS_TO_ESCAPE, "\\$&"); 22 | } 23 | 24 | result = "(^|\\s)("+result+")(\\s|$)"; 25 | 26 | return new RegExp(result, "g"); 27 | } 28 | 29 | // Replace emoticon char sequences with an tag. 30 | Emoticons.convertEmoticons = function(msg, regexp, mappings, className) { 31 | return msg.replace( 32 | regexp, 33 | function(matched, p1, p2, p3) { 34 | var imgHTML = p1+'Loading…'); 7 | }, 8 | 9 | 'build' : function(force) { 10 | var tpl = Spaz.Newspopup.tpl; 11 | 12 | $.getJSON("http://getspaz.com/feeds/spaz-desktop.json", function(data) { 13 | 14 | // return out if we don't have new items 15 | if (!force && !Spaz.Newspopup.hasNewItems(data.feed.last_updated)) { return; } 16 | 17 | Spaz.Newspopup.initWindow(); 18 | 19 | for (var i=0; i < data.feed.entries.length; i++) { 20 | data.feed.entries[i].humanDate = Spaz.Newspopup.humanDate; 21 | } 22 | 23 | var html = $.mustache(tpl, data.feed); 24 | var container = $('#news-content').html(html); 25 | }); 26 | 27 | }, 28 | 29 | 'humanDate':function(text, render) { 30 | text = new Date(this.publishedDate).toString('M/d/yyyy'); 31 | return text; 32 | }, 33 | 34 | 'hasNewItems':function(last_updated) { 35 | var local_last_upated = Spaz.Prefs.get('news_last_updated'); 36 | 37 | if (local_last_upated) { 38 | if (new Date(local_last_upated) >= new Date(last_updated)) { 39 | return false; 40 | } 41 | } 42 | 43 | Spaz.Prefs.set('news_last_updated', last_updated); 44 | 45 | return true; 46 | }, 47 | 48 | 'tpl':[ 49 | '{{#entries}}' 50 | ,'
' 51 | ,' ' 52 | ,'
{{humanDate}}
' 53 | ,'
{{{content}}}
' 54 | ,'
' 55 | ,'{{/entries}}' 56 | ].join('') 57 | }; -------------------------------------------------------------------------------- /Resources/app/views/spaz.sharemenu.js: -------------------------------------------------------------------------------- 1 | Spaz.ShareMenu = function() {}; 2 | 3 | Spaz.ShareMenu.prototype.createAndShow = function(event, status_obj) { 4 | 5 | var status_id = status_obj.id; 6 | sch.debug('status_id:'+status_id); 7 | sch.debug(status_obj); 8 | 9 | var menu = new SpazMenu({ 10 | base_id: 'share-menu', 11 | base_class: 'spaz-menu', 12 | li_class: 'spaz-menu-item', 13 | close_on_any_click: true, 14 | items_func: function(itemsData){ 15 | var i, iMax, itemData, items = []; 16 | 17 | items.push({ 18 | label: $L('Retweet'), 19 | handler: function(e, data) { 20 | Spaz.Data.retweet(status_obj.id); 21 | }, 22 | data: {'status_id':status_id} 23 | }); 24 | items.push({ 25 | label: $L('RT @…'), 26 | handler: function(e, data) { 27 | Spaz.postPanel.prepRetweet(status_obj.user.screen_name, status_obj.SC_text_raw); 28 | }, 29 | data: {'status_id':status_id} 30 | }); 31 | items.push({ 32 | label: $L('/via…'), 33 | handler: function(e, data) { 34 | Spaz.postPanel.prepVia(status_obj.user.screen_name, status_obj.SC_text_raw); 35 | }, 36 | data: {'status_id':status_id} 37 | }); 38 | 39 | return items; 40 | } 41 | }); 42 | 43 | menu.show(event); 44 | }; 45 | 46 | /** 47 | * this onReady binds clicks on the appropriate elements to the menu creation method 48 | */ 49 | jQuery(document).ready(function(){ 50 | jQuery('.status-action-retweet').live('click', function(e) { 51 | sch.debug(this.outerHTML); 52 | var entryid = $(this).attr('entry-id'); 53 | 54 | var sharemenu = new Spaz.ShareMenu(); 55 | 56 | sch.debug(entryid); 57 | 58 | Spaz.Data.getTweet(entryid, null, function(data) { 59 | sharemenu.createAndShow(e, data); 60 | }); 61 | }); 62 | }); -------------------------------------------------------------------------------- /Resources/license-showdown.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2007, John Fraser 2 | 3 | All rights reserved. 4 | 5 | Original Markdown copyright (c) 2004, John Gruber 6 | 7 | All rights reserved. 8 | 9 | Redistribution and use in source and binary forms, with or without 10 | modification, are permitted provided that the following conditions are 11 | met: 12 | 13 | * Redistributions of source code must retain the above copyright notice, 14 | this list of conditions and the following disclaimer. 15 | 16 | * Redistributions in binary form must reproduce the above copyright 17 | notice, this list of conditions and the following disclaimer in the 18 | documentation and/or other materials provided with the distribution. 19 | 20 | * Neither the name "Markdown" nor the names of its contributors may 21 | be used to endorse or promote products derived from this software 22 | without specific prior written permission. 23 | 24 | This software is provided by the copyright holders and contributors "as 25 | is" and any express or implied warranties, including, but not limited 26 | to, the implied warranties of merchantability and fitness for a 27 | particular purpose are disclaimed. In no event shall the copyright owner 28 | or contributors be liable for any direct, indirect, incidental, special, 29 | exemplary, or consequential damages (including, but not limited to, 30 | procurement of substitute goods or services; loss of use, data, or 31 | profits; or business interruption) however caused and on any theory of 32 | liability, whether in contract, strict liability, or tort (including 33 | negligence or otherwise) arising in any way out of the use of this 34 | software, even if advised of the possibility of such damage. 35 | -------------------------------------------------------------------------------- /Resources/app/libs/spaz.hooks.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hooks are events for which users can write listeners. 3 | * 4 | * Hook events are always triggered on the document object. 5 | * 6 | * Known hooks: 7 | * 'friends_timeline_data_success_start' 8 | * 'friends_timeline_data_success_finish' 9 | * 'public_timeline_data_success_start' 10 | * 'public_timeline_data_success_finish' 11 | * 'search_timeline_data_success_start' 12 | * 'search_timeline_data_success_finish' 13 | * 'favorites_timeline_data_success_start' 14 | * 'favorites_timeline_data_success_finish' 15 | * 'user_timeline_data_success_start' 16 | * 'user_timeline_data_success_finish' 17 | * 'lists_timeline_data_success_start' 18 | * 'lists_timeline_data_success_finish' 19 | * 'followers_timeline_data_success_start' 20 | * 'followers_timeline_data_success_finish' 21 | */ 22 | 23 | Spaz.Hooks = {}; 24 | 25 | Spaz.Hooks.trigger = function(hook, data) { 26 | sch.trigger(hook, document, data); 27 | }; 28 | 29 | Spaz.Hooks.register = function(hook, listener) { 30 | sch.listen(document, hook, listener); 31 | }; 32 | 33 | 34 | /** 35 | * Load default hooks 36 | */ 37 | (function() { 38 | 39 | /** 40 | * A helper to load media via embedly 41 | */ 42 | var embedly_listener = function(e) { 43 | /* 44 | loads media 45 | */ 46 | jQuery('div.timeline-entry.new div.status-text a').embedly({ 47 | maxWidth: 250, 48 | maxHeight:300, 49 | 'method':'afterParent', 50 | 'wrapElement':'div', 51 | 'className':'embedly' 52 | } 53 | ); 54 | }; 55 | 56 | 57 | /** 58 | * add listeners to these hooks 59 | */ 60 | Spaz.Hooks.register('friends_timeline_data_success_finish', embedly_listener); 61 | Spaz.Hooks.register('search_timeline_data_success_finish', embedly_listener); 62 | Spaz.Hooks.register('public_timeline_data_success_finish', embedly_listener); 63 | 64 | })(); -------------------------------------------------------------------------------- /Resources/vendors/SpazGrowl.js: -------------------------------------------------------------------------------- 1 | SpazGrowl = function(appname) { 2 | this.appname = appname || null; 3 | } 4 | 5 | SpazGrowl.prototype.notify= function(title, message, opts) { 6 | if (!opts) { opts = {}; } 7 | 8 | 9 | 10 | var show = function(title, message, opts) { 11 | sch.debug(title); 12 | sch.debug(message); 13 | sch.debug(opts); 14 | 15 | var not = Titanium.Notification.createNotification(); 16 | 17 | console.dir(opts); 18 | 19 | not.setMessage(message); 20 | not.setIcon(opts.icon||null); 21 | not.setTimeout(opts.duration||null); 22 | not.setTitle(title); 23 | not.setCallback(function () { 24 | if (opts.onClick) { 25 | opts.onClick(); 26 | } 27 | }); 28 | not.show(); 29 | } 30 | 31 | 32 | if (opts.icon && opts.icon.indexOf('http') === 0) { 33 | 34 | // var filename = opts.icon.replace(/[^a-zA-Z\._-]/, '_'); 35 | var filename = 'http://a3.twimg.com/profile_images/1230189066/cal_really_small_normal.jpg'.replace(/[^a-zA-Z0-9\._-]/gi, '_'); 36 | 37 | // first, make a cache dir 38 | var appDdir = Titanium.Filesystem.getApplicationDataDirectory(); 39 | var cacheDir = Titanium.Filesystem.getFile(appDdir, 'avatar_cache'); 40 | if (!cacheDir.exists()) { 41 | cacheDir.createDirectory(); 42 | } 43 | var cacheFile = Titanium.Filesystem.getFile(cacheDir, filename); 44 | if (!cacheFile.exists()) { 45 | cacheFile.touch(); 46 | } 47 | 48 | var httpClient = Titanium.Network.createHTTPClient(); 49 | httpClient.onload = function() { 50 | var stream = cacheFile.open(Titanium.Filesystem.MODE_WRITE); 51 | stream.write(this.responseData); 52 | stream.close(); 53 | opts.icon = cacheFile.toString(); 54 | // opts.icon = "/Users/coj/Desktop/green normal"; 55 | console.log(opts.icon); 56 | show(title, message, opts); 57 | }; 58 | httpClient.open('GET', opts.icon); 59 | httpClient.send(); 60 | } else { 61 | show(title, message, opts); 62 | } 63 | 64 | }; -------------------------------------------------------------------------------- /Resources/vendors/lawnchair/adaptors/UserDataStorage.js: -------------------------------------------------------------------------------- 1 | /** 2 | * UserDataAdaptor 3 | * =================== 4 | * UserData implementation for Lawnchair for older IE browsers. 5 | * 6 | */ 7 | var UserDataAdaptor = function(options) { 8 | for (var i in LawnchairAdaptorHelpers) { 9 | this[i] = LawnchairAdaptorHelpers[i]; 10 | } 11 | this.init(options); 12 | }; 13 | 14 | UserDataAdaptor.prototype = { 15 | init:function(){ 16 | var s = document.createElement('span'); 17 | s.style.behavior = 'url(\'#default#userData\')'; 18 | s.style.position = 'absolute'; 19 | s.style.left = 10000; 20 | document.body.appendChild(s); 21 | this.storage = s.load('lawnchair'); 22 | }, 23 | get:function(key, callback){ 24 | // this.storage.getAttribute(key); 25 | var obj = this.deserialize(this.storage[key]); 26 | if (obj) { 27 | obj.key = key; 28 | if (callback) 29 | callback(obj); 30 | } 31 | }, 32 | save:function(obj, callback){ 33 | var id = obj.key || this.uuid(); 34 | delete obj.key; 35 | this.storage[id] = this.serialize(obj); 36 | this.storage.save('lawnchair'); 37 | if (callback) 38 | callback(obj); 39 | }, 40 | all:function(callback){ 41 | var cb = this.terseToVerboseCallback(callback); 42 | var ca = this.storage.attributes; 43 | var yar = []; 44 | var v,o; 45 | // yo ho yo ho a pirates life for me 46 | for (var i = 0, l = ca.length; i < l; i++) { 47 | v = ca[i]; 48 | o = this.deserialize(v.nodeValue); 49 | if (o) { 50 | o.key = v.nodeName; 51 | yar.push(o); 52 | } 53 | } 54 | if (cb) 55 | cb(yar); 56 | }, 57 | remove:function(keyOrObj) { 58 | var key = (typeof keyOrObj == 'string') ? keyOrObj : keyOrObj.key; 59 | this.storage.removeAttribute(key); 60 | this.storage.save('lawnchair'); 61 | }, 62 | nuke:function() { 63 | var that = this; 64 | this.all(function(r){ 65 | for (var i = 0, l = r.length; i < l; i++) { 66 | if (r[i].key) 67 | that.remove(r[i].key); 68 | } 69 | }); 70 | } 71 | }; 72 | -------------------------------------------------------------------------------- /Resources/app/views/spaz.replymenu.js: -------------------------------------------------------------------------------- 1 | Spaz.ReplyMenu = function() {}; 2 | 3 | Spaz.ReplyMenu.prototype.createAndShow = function(event, screen_name, names, status_obj) { 4 | 5 | var status_id = status_obj.id; 6 | 7 | sch.debug('status_id:'+status_id); 8 | sch.debug('screen_name:'+screen_name); 9 | sch.debug('names:'+names); 10 | sch.debug(status_obj); 11 | 12 | var menu = new SpazMenu({ 13 | base_id: 'reply-menu', 14 | base_class: 'spaz-menu', 15 | li_class: 'spaz-menu-item', 16 | close_on_any_click: true, 17 | items_func: function(itemsData){ 18 | var i, iMax, itemData, items = []; 19 | 20 | items.push({ 21 | label: $L('@Reply'), 22 | handler: function(e, data) { 23 | Spaz.postPanel.prepReply(screen_name, status_obj.id, status_obj.SC_text_raw); 24 | }, 25 | data: {'status_id':status_id} 26 | }); 27 | 28 | // add reply to all if more than one name 29 | if (names.length > 1) { 30 | items.push({ 31 | label: $L('@Reply to all'), 32 | handler: function(e, data) { 33 | Spaz.postPanel.prepReply(names, status_obj.id, status_obj.SC_text_raw); 34 | }, 35 | data: {'status_id':status_id} 36 | }); 37 | } 38 | 39 | return items; 40 | } 41 | }); 42 | 43 | menu.show(event); 44 | }; 45 | 46 | /** 47 | * this onReady binds clicks on the appropriate elements to the menu creation method 48 | */ 49 | jQuery(document).ready(function(){ 50 | jQuery('.status-action-reply').live('click', function(e) { 51 | 52 | var tweet_id = $(this).attr('entry-id'); 53 | var ReplyMenu = new Spaz.ReplyMenu(); 54 | 55 | Spaz.TweetsModel.getById( 56 | tweet_id, 57 | false, 58 | function(data) { 59 | sch.debug("data:"+sch.enJSON(data)); 60 | 61 | var resp = Spaz.TweetsModel.getScreenNamesFromStatus(data); 62 | 63 | if (resp.names.length > 1) { 64 | ReplyMenu.createAndShow(e, resp.screen_name, resp.names, data); 65 | } else { 66 | Spaz.postPanel.prepReply(resp.screen_name, data.id, data.SC_text_raw||data.text); 67 | } 68 | } 69 | ); 70 | }); 71 | }); -------------------------------------------------------------------------------- /Resources/vendors/jquery/jquery.center.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author Alexandre Magno 3 | * @desc Center a element with jQuery 4 | * @version 1.0 5 | * @example 6 | * $("element").center({ 7 | * 8 | * vertical: true, 9 | * horizontal: true 10 | * 11 | * }); 12 | * @obs With no arguments, the default is above 13 | * @license free 14 | * @param bool vertical, bool horizontal 15 | * @contribution Paulo Radichi 16 | * 17 | */ 18 | jQuery.fn.center = function(params) { 19 | 20 | var options = { 21 | 22 | vertical: true, 23 | horizontal: true 24 | 25 | } 26 | op = jQuery.extend(options, params); 27 | 28 | return this.each(function(){ 29 | 30 | //initializing variables 31 | var $self = jQuery(this); 32 | //get the dimensions using dimensions plugin 33 | var width = $self.width(); 34 | var height = $self.height(); 35 | //get the paddings 36 | var paddingTop = parseInt($self.css("padding-top")); 37 | var paddingBottom = parseInt($self.css("padding-bottom")); 38 | //get the borders 39 | var borderTop = parseInt($self.css("border-top-width")); 40 | var borderBottom = parseInt($self.css("border-bottom-width")); 41 | //get the media of padding and borders 42 | var mediaBorder = (borderTop+borderBottom)/2; 43 | var mediaPadding = (paddingTop+paddingBottom)/2; 44 | //get the type of positioning 45 | var positionType = $self.parent().css("position"); 46 | // get the half minus of width and height 47 | var halfWidth = (width/2)*(-1); 48 | var halfHeight = ((height/2)*(-1))-mediaPadding-mediaBorder; 49 | // initializing the css properties 50 | var cssProp = { 51 | position: 'absolute' 52 | }; 53 | 54 | if(op.vertical) { 55 | cssProp.height = height; 56 | cssProp.top = '50%'; 57 | cssProp.marginTop = halfHeight; 58 | } 59 | if(op.horizontal) { 60 | cssProp.width = width; 61 | cssProp.left = '50%'; 62 | cssProp.marginLeft = halfWidth; 63 | } 64 | //check the current position 65 | if(positionType == 'static') { 66 | $self.parent().css("position","relative"); 67 | } 68 | //aplying the css 69 | $self.css(cssProp); 70 | 71 | 72 | }); 73 | 74 | }; -------------------------------------------------------------------------------- /Resources/vendors/jquery/jquery.highlight-2.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | highlight v2 4 | 5 | Highlights arbitrary terms. 6 | 7 | 8 | 9 | MIT license. 10 | 11 | Johann Burkard 12 | 13 | 14 | 15 | */ 16 | 17 | $(function() { 18 | jQuery.highlight = document.body.createTextRange ? 19 | 20 | /* 21 | Version for IE using TextRanges. 22 | */ 23 | function(node, te) { 24 | var r = document.body.createTextRange(); 25 | r.moveToElementText(node); 26 | for (var i = 0; r.findText(te); i++) { 27 | r.pasteHTML('' + r.text + '<\/span>'); 28 | r.collapse(false); 29 | } 30 | } 31 | 32 | : 33 | 34 | /* 35 | (Complicated) version for Mozilla and Opera using span tags. 36 | */ 37 | function(node, te) { 38 | var pos, 39 | skip, 40 | spannode, 41 | middlebit, 42 | endbit, 43 | middleclone; 44 | skip = 0; 45 | if (node.nodeType == 3) { 46 | pos = node.data.toUpperCase().indexOf(te); 47 | if (pos >= 0) { 48 | spannode = document.createElement('span'); 49 | spannode.className = 'highlight'; 50 | middlebit = node.splitText(pos); 51 | endbit = middlebit.splitText(te.length); 52 | middleclone = middlebit.cloneNode(true); 53 | spannode.appendChild(middleclone); 54 | middlebit.parentNode.replaceChild(spannode, middlebit); 55 | skip = 1; 56 | } 57 | } 58 | else if (node.nodeType == 1 && node.childNodes && !/(script|style)/i.test(node.tagName)) { 59 | for (var i = 0; i < node.childNodes.length; ++i) { 60 | i += $.highlight(node.childNodes[i], te); 61 | } 62 | } 63 | return skip; 64 | } 65 | 66 | ; 67 | }); 68 | 69 | jQuery.fn.removeHighlight = function() { 70 | this.find("span.highlight").each(function() { 71 | with(this.parentNode) { 72 | replaceChild(this.firstChild, this); 73 | normalize(); 74 | } 75 | }); 76 | return this; 77 | }; -------------------------------------------------------------------------------- /Resources/app/libs/Emoticons.GMailChat.js: -------------------------------------------------------------------------------- 1 | var Emoticons; if (!Emoticons) Emoticons = {}; 2 | 3 | if (!Emoticons.GMailChat) { 4 | Emoticons.GMailChat = {}; 5 | } 6 | 7 | Emoticons.GMailChat.name = "GMail Chat Animated Emoticons"; 8 | Emoticons.GMailChat.author = "Google"; 9 | Emoticons.GMailChat.home = "http://mail.google.com/support/bin/answer.py?hl=en&answer=34056"; 10 | Emoticons.GMailChat.className = "gmail-chat"; 11 | Emoticons.GMailChat.imgPath = "http://mail.google.com/mail/help/images/screenshots/chat/"; 12 | 13 | Emoticons.GMailChat.mappings = { 14 | "<3" : Emoticons.GMailChat.imgPath + "heart.gif", 15 | ":(|)" : Emoticons.GMailChat.imgPath + "monkey.gif", 16 | "\\m/" : Emoticons.GMailChat.imgPath + "rockout.gif", 17 | ":-o" : Emoticons.GMailChat.imgPath + "shocked.gif", 18 | ":D" : Emoticons.GMailChat.imgPath + "grin.gif", 19 | ":(" : Emoticons.GMailChat.imgPath + "frown.gif", 20 | "x-(" : Emoticons.GMailChat.imgPath + "angry.gif", 21 | "B-)" : Emoticons.GMailChat.imgPath + "cool.gif", 22 | ":'(" : Emoticons.GMailChat.imgPath + "cry.gif", 23 | "=D" : Emoticons.GMailChat.imgPath + "equal_grin.gif", 24 | ";)" : Emoticons.GMailChat.imgPath + "wink.gif", 25 | ":-|" : Emoticons.GMailChat.imgPath + "straightface.gif", 26 | "=)" : Emoticons.GMailChat.imgPath + "equal_smile.gif", 27 | ":-D" : Emoticons.GMailChat.imgPath + "nose_grin.gif", 28 | ";^)" : Emoticons.GMailChat.imgPath + "wink_big_nose.gif", 29 | ";-)" : Emoticons.GMailChat.imgPath + "wink_nose.gif", 30 | ":-)" : Emoticons.GMailChat.imgPath + "nose_smile.gif", 31 | ":-/" : Emoticons.GMailChat.imgPath + "slant.gif", 32 | ":P" : Emoticons.GMailChat.imgPath + "tongue.gif" 33 | } 34 | 35 | // Build a regular expression containing all emoticons in this set. 36 | if (!Emoticons.GMailChat.regexp) { 37 | Emoticons.GMailChat.regexp = Emoticons.buildRegexp(Emoticons.GMailChat.mappings); 38 | } 39 | 40 | // Convert emoticons to using then Emoticons.convertEmoticons() function. 41 | Emoticons.GMailChat.convertEmoticons = function(msg) { 42 | return Emoticons.convertEmoticons( 43 | msg, 44 | Emoticons.GMailChat.regexp, 45 | Emoticons.GMailChat.mappings, 46 | Emoticons.GMailChat.className 47 | ); 48 | } -------------------------------------------------------------------------------- /Resources/app/views/spaz.timelinefilters.js: -------------------------------------------------------------------------------- 1 | Spaz.TimelineFilters = {}; 2 | 3 | Spaz.TimelineFilters.defaultEntryFilters = [ 4 | { 5 | 'label':'nl2br', 6 | 'func':function(d) { 7 | d.text = sch.nl2br(d.text); 8 | if (d.SC_is_retweet) { 9 | d.retweeted_status.text = sch.nl2br(d.retweeted_status.text); 10 | } 11 | return d; 12 | } 13 | }, 14 | { 15 | 'label':'autolink', 16 | 'func':function(d) { 17 | d.text = sch.makeClickable(d.text, SPAZ_MAKECLICKABLE_OPTS); 18 | if (d.SC_is_retweet) { 19 | d.retweeted_status.text = sch.makeClickable(d.retweeted_status.text, SPAZ_MAKECLICKABLE_OPTS); 20 | } 21 | return d; 22 | } 23 | }, 24 | { 25 | 'label':'emoticons', 26 | 'func':function(d) { 27 | d.text = Emoticons.SimpleSmileys.convertEmoticons(d.text); 28 | if (d.SC_is_retweet) { 29 | d.retweeted_status.text = Emoticons.SimpleSmileys.convertEmoticons(d.retweeted_status.text); 30 | } 31 | return d; 32 | } 33 | }, 34 | { 35 | 'label':'markdown', 36 | 'func':function(d) { 37 | var md = new Showdown.converter(); 38 | d.text = md.makeHtml(d.text); 39 | d.text = d.text.replace(/href="([^"]+)"/gi, 'href="$1" data-spaz-title="Open link in a browser window" class="inline-link"'); 40 | return d; 41 | } 42 | } 43 | 44 | /* 45 | for now, remove this and rely on embedly hooks 46 | */ 47 | // , 48 | // { 49 | // 'label':'getImageURLs', 50 | // 'func':function(d) { 51 | // var sui = new SpazImageURL(); 52 | // if (d.SC_is_retweet) { 53 | // d.SC_thumbnail_urls = sui.getThumbsForUrls(d.retweeted_status.text); 54 | // } else { 55 | // d.SC_thumbnail_urls = sui.getThumbsForUrls(d.SC_text_raw||d.text); 56 | // } 57 | // return d; 58 | // } 59 | // } 60 | ]; 61 | 62 | /* 63 | Build our default filter chains 64 | */ 65 | Spaz.TimelineFilters.friends = new SpazFilterChain({filters:Spaz.TimelineFilters.defaultEntryFilters}); 66 | 67 | Spaz.TimelineFilters['public'] = new SpazFilterChain({filters:Spaz.TimelineFilters.defaultEntryFilters}); 68 | 69 | Spaz.TimelineFilters.lists = new SpazFilterChain({filters:Spaz.TimelineFilters.defaultEntryFilters}); 70 | 71 | Spaz.TimelineFilters.search = new SpazFilterChain({filters:Spaz.TimelineFilters.defaultEntryFilters}); 72 | 73 | Spaz.TimelineFilters.other = new SpazFilterChain({filters:Spaz.TimelineFilters.defaultEntryFilters}); 74 | -------------------------------------------------------------------------------- /Resources/vendors/jquery/menu/style.css: -------------------------------------------------------------------------------- 1 | div.outerbox 2 | { 3 | font-size:12px; 4 | font-weight: normal; 5 | overflow: auto; 6 | background-color: #222222; 7 | background-repeat: repeat-x; 8 | color:#EEEEEE; 9 | -webkit-box-shadow:0px 0px 6px #333333; 10 | /* display:none;*/ 11 | padding:5px; 12 | opacity:0.9; 13 | -khtml-border-radius:5px; 14 | } 15 | div.outerbox div.shadowbox1 16 | { 17 | position: absolute; 18 | right: 0; 19 | bottom: 5px; 20 | width: 5px; 21 | height: 100%; 22 | } 23 | div.outerbox div.shadowbox2 24 | { 25 | position: absolute; 26 | bottom: 0; 27 | right: 5px; 28 | height: 5px; 29 | width: 100%; 30 | } 31 | div.outerbox div.shadowbox3 32 | { 33 | position: absolute; 34 | bottom: 0; 35 | right: 0; 36 | height: 5px; 37 | width: 5px; 38 | } 39 | .innerbox 40 | { 41 | margin: 0; 42 | display: inherit; 43 | } 44 | 45 | #root-menu-div ul { 46 | } 47 | #root-menu-div li { 48 | list-style: none; 49 | min-width:125px; 50 | } 51 | 52 | ul.menu, 53 | #root-menu-div ul { 54 | padding:0px; 55 | margin:0; 56 | list-style: none; 57 | } 58 | 59 | 60 | li.menu-separator.active{ 61 | background-color: transparent; 62 | } 63 | .activetarget{ 64 | /*background-color: white;*/ 65 | } 66 | 67 | li.menumain { 68 | float: left; 69 | /* padding: 0 10px;*/ 70 | } 71 | img.menu-item-arrow{ 72 | position: absolute; 73 | right: 4px; 74 | top: 8px; 75 | } 76 | 77 | /* 78 | This is for separators 79 | */ 80 | #root-menu-div hr { 81 | border-bottom: 1px solid #999999; 82 | border-left-width: 0px; 83 | border-right-width: 0px; 84 | border-top-width: 0px; 85 | margin-left: auto; 86 | margin-right: auto; 87 | text-align: center; 88 | width: 80%; 89 | } 90 | 91 | div.menu-item a { 92 | color:inherit; 93 | display:block; 94 | padding: 5px 10px; 95 | } 96 | li.active { 97 | padding:0; 98 | } 99 | li.active>div.menu-item>a { 100 | background-color:#eeeeee; 101 | color:#222222; 102 | cursor: pointer; 103 | -khtml-border-radius:5px; 104 | } 105 | 106 | 107 | /* 108 | This isn't used because we can't make them small enough 109 | */ 110 | /*li.menu-separator{ 111 | border-bottom: 1px solid #CCCCCC; 112 | width:60%; 113 | height: 0px; 114 | margin:4px 10px; 115 | } 116 | */ -------------------------------------------------------------------------------- /Resources/vendors/lawnchair/adaptors/CookieAdaptor.js: -------------------------------------------------------------------------------- 1 | /** 2 | * CookieAdaptor 3 | * =================== 4 | * Cookie implementation for Lawnchair for older browsers. 5 | * 6 | * Based on ppk's http://www.quirksmode.org/js/cookies.html 7 | * 8 | */ 9 | var CookieAdaptor = function(options) { 10 | for (var i in LawnchairAdaptorHelpers) { 11 | this[i] = LawnchairAdaptorHelpers[i]; 12 | } 13 | this.init(options); 14 | }; 15 | 16 | CookieAdaptor.prototype = { 17 | init:function(){ 18 | this.createCookie = function(name, value, days) { 19 | if (days) { 20 | var date = new Date(); 21 | date.setTime(date.getTime()+(days*24*60*60*1000)); 22 | var expires = "; expires="+date.toGMTString(); 23 | } 24 | else var expires = ""; 25 | document.cookie = name+"="+value+expires+"; path=/"; 26 | }; 27 | }, 28 | get:function(key, callback){ 29 | var readCookie = function(name) { 30 | var nameEQ = name + "="; 31 | var ca = document.cookie.split(';'); 32 | var len = ca.length; 33 | for (var i=0; i < len; i++) { 34 | var c = ca[i]; 35 | while (c.charAt(0)==' ') c = c.substring(1,c.length); 36 | if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); 37 | } 38 | return null; 39 | }; 40 | var obj = this.deserialize(readCookie(key)) || null; 41 | if (obj) { 42 | obj.key = key; 43 | } 44 | if(callback) callback(obj); 45 | }, 46 | save:function(obj, callback){ 47 | var id = obj.key || this.uuid(); 48 | delete obj.key; 49 | this.createCookie(id, this.serialize(obj), 365); 50 | if (callback) 51 | callback(obj); 52 | }, 53 | all:function(callback){ 54 | var cb = this.terseToVerboseCallback(callback); 55 | var ca = document.cookie.split(';'); 56 | var yar = []; 57 | var c,k,v,o; 58 | // yo ho yo ho a pirates life for me 59 | for (var i = 0, l = ca.length; i < l; i++) { 60 | c = ca[i].split('='); 61 | k = c[0]; 62 | v = c[1]; 63 | o = this.deserialize(v); 64 | if (o) { 65 | o.key = k; 66 | yar.push(o); 67 | } 68 | } 69 | if (cb) 70 | cb(yar); 71 | }, 72 | remove:function(keyOrObj, callback) { 73 | var key = (typeof keyOrObj == 'string') ? keyOrObj : keyOrObj.key; 74 | this.createCookie(key, '', -1); 75 | if(callback) 76 | callback(); 77 | }, 78 | nuke:function(nuke, callback) { 79 | var that = this; 80 | this.all(function(r){ 81 | for (var i = 0, l = r.length; i < l; i++) { 82 | if (r[i].key) 83 | that.remove(r[i].key); 84 | } 85 | }, callback); 86 | } 87 | }; 88 | --------------------------------------------------------------------------------