aboutsummaryrefslogtreecommitdiffstats
path: root/shuppoppo.js
diff options
context:
space:
mode:
authorHaruto Otake2011-03-25 16:15:09 +0900
committerHaruto Otake2011-03-25 16:15:09 +0900
commitbd7b2a6842d8527252da0048dfb094c003596cb5 (patch)
tree9205f43b3d11b143e58b05548020e58edb7371d4 /shuppoppo.js
parentbe760a8222e7170effd5d0fa7508ee437730d531 (diff)
parent65c10255055f730b9adc6c01254d2a25d42e7e5c (diff)
downloadvimperator-plugins-bd7b2a6842d8527252da0048dfb094c003596cb5.tar.bz2
Merge branch 'master' of https://github.com/guyon/vimperator-plugins
Diffstat (limited to 'shuppoppo.js')
0 files changed, 0 insertions, 0 deletions
> 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
/* NEW BSD LICENSE {{{
Copyright (c) 2008, anekos.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

    1. Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
    3. The names of the authors may not be used to endorse or promote products
       derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.


###################################################################################
# http://sourceforge.jp/projects/opensource/wiki/licenses%2Fnew_BSD_license       #
# に参考になる日本語訳がありますが、有効なのは上記英文となります。                #
###################################################################################

}}} */

var PLUGIN_INFO =
<VimperatorPlugin>
  <name>Foxy Tunes</name>
  <description>for FoxyTunes</description>
  <description lang="ja">for FoxyTunes</description>
  <version>0.3.1</version>
  <author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author>
  <minVersion>2.0pre</minVersion>
  <maxVersion>2.0pre</maxVersion>
  <updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/foxytunes.js</updateURL>
  <license>new BSD License (Please read the source code comments of this plugin)</license>
  <license lang="ja">修正BSDライセンス (ソースコードのコメントを参照してください)</license>
  <detail><![CDATA[
    == Commands ==
      + :ftplay
      + :ftpause
      + :ftnext
      + :ftprevious
      + :ftvolume <VOLUME>
  ]]></detail>
  <detail lang="ja"><![CDATA[
    == Commands ==
      + :ftplay
      + :ftpause
      + :ftnext
      + :ftprevious
      + :ftvolume <VOLUME>
  ]]></detail>
</VimperatorPlugin>;

(function () {

  // 上手い具合に病数に直すよ
  function fromTimeCode (code) {
    let m;
    function sign (s, v)
      (s == '-' ? -v : v);
    if (m = code.match(/^([-+])?(\d+):(\d+)$/))
      return sign(m[1], parseInt(m[2]) * 60 + parseInt(m[3]));
    if (m = code.match(/^([-+])?(\d+\.\d+)$/))
      return sign(m[1], parseFloat(m[2]) * 60);
    return parseInt(code);
  }

  let player = Components.classes['@foxytunes.org/FoxyTunesEngine/FoxyTunesService;1'].getService();

  // foxytunesDispatchPlayerCommand
  ['Pause', 'Play', 'Next', 'Previous'].forEach(function (name) {
    let ln = name.toLowerCase();
    let lnm = ln.match(/(..)(.*)/);
    commands.addUserCommand(
      ['ft' + lnm[1] + '[' + lnm[2] + ']'],
      name + ' - FoxyTunes',
      function () foxytunesDispatchPlayerCommand(name, true),
      true
    );
  });

  // volume
  commands.addUserCommand(
    ['ftvo[lume]'],
    'Set Volume - FoxyTunes',
    function (args) {
      let v = parseInt(args.string || '0', 10);
      let volume = args.bang ? Math.min(Math.max(foxytunesGetVolume() + v, 0), 100)
                             : Math.min(Math.max(v, 0), 100);
      foxytunesSetVolume(v);
    },
    {
      argCount: '*'
    },
    true
  );

})();

/*
  FoxyTunes が window に設置する関数の数々…
  gFoxytunesYMPPageAnalyzer
  FoxyTunesHTMLTooltip
  FoxyTunesTooltipInfo
  FoxytunesYMPPageAnalyzer
  FoxytunesThunderbirdSignatures
  FoxytunesSignatures
  FoxytunesSignaturesSiteHandler
  FoxyTunesFeedMenuPopupUI
  FoxyTunesSearchEngine
  FoxyTunesSearchTermsBuilder
  FoxyTunesSearchExecuter
  foxytunescontextMenuExecuteSearch
  foxytunesExecuteSearch
  foxytunesInitMusicSearchMenuPopup
  gFoxytunesSignatures
  gFoxyTunesUninstallObserver
  gbFoxyTunesIgnorePrefChange
  gFoxyTunesRecentPlayers
  gFoxyTunesInfoBoxShowTimerId
  gFoxyTunesInfoBoxHideTimerId
  gFoxyTunesInfoBoxWindow
  gbFoxyTunesInfoBoxWindowOpened
  gbFoxyTunesInfoPopupVisible
  gFoxyTunesDOMParser
  gbFoxyTunesShiftDown
  gbFoxyTunesNoTitlePopup
  gFoxyTunesUpdateTitleOnCommandTimerID
  gbFoxyTunesDontUpdateTitleOnCommand
  gFoxyTunesMaxLinksForWebMedia
  gFoxyTunesAutoHideTimeout
  gFoxyTunesAllButtonsAutohideTimerID
  gFoxyTunesCurrentTrackTitle
  gFoxyTunesTrackInfoTooltipHeight
  gFoxyTunesPlayerObj
  gFoxyTunesCurrentPlayerClass
  gFoxyTunesInsertAfterElementId
  gFoxyTunesInsertBeforeElementId
  gFoxyTunesParentElementID
  gbFoxyTunesOpenWindowInTab
  gFoxyTunesCurrentPlayerOptions
  gFoxyTunesCustomPlayerOptions
  gFoxyTunesMaxRecentCharsets
  gFoxyTunesRecentCharsets
  gFoxyTunesAllCharSets
  gbFoxyTunesChangingSliderPos
  gbFoxyTunesPlaying
  gFoxyTunesTrackInfoTimerID
  gFoxyTunesCharacterEncoding
  gFoxytunesUtils
  gFoxyTunesUnicodeConverter
  foxytunesScriptableUnicodeConverter
  gFoxyTunesPref
  gFoxyTunesPrefService
  foxytunesDragAndDropObserver
  foxytunesGenarateUrlsFromUrl
  foxytunesGenarateUrlsFromFileOrDirectory
  foxytunesSetAmazonStoreOption
  foxytunesSetAmazonStore
  foxytunesInstallTwittyTunes
  foxytunesOpenTwittyTunesDialog
  foxytunesUninitOverlay
  foxytunesInitOverlay
  foxytunesShowStatusBarUponFreshInstall
  foxytunesUninstallObserver
  foxytunesUpdateFoxytunesVersionAndShowWelcomeScreenIfNeeded
  foxytunesClearQuickSwitch
  foxytunesCustomizeWebSearchEngine
  foxytunesInitMinibrowserOverlay
  foxytunesObserveContextMenu
  foxytunesObserveSwitchPlayer
  gFoxyTunesSwitchPlayerObserver
  foxytunesObserveTrackData
  foxytunesObservePrefs
  gFoxyTunesPreferencesObserver
  gFoxyTunesTrackDataObserver
  foxytunesDoPlatformSpecificUIChanges
  foxytunesDisableFoxyTunesMini
  foxytunesShowPleaseWait
  foxytunesModuleInstallationFailed
  foxytunesSeaMonkeyInstallFixer
  foxytunesOnQuickPlayerSwitch
  foxytunesPopulateRecentPlayers
  foxytunesOnMainMenuShowing
  foxytunesAlertStreamNotSupported
  foxytunesStreamIsSupportedInCurrentPlayer
  foxytunesGetSupportedRegExp
  foxytunesURLIsMedia
  foxytunesOnContextPopupShowing
  foxytunesShowOrHideContextMenuItems
  foxytunesSetElementHiddenAttrByFtpref
  foxytunesPopulateFeedMenu
  foxytunesPopulatePageMediaMenu
  foxytunesGetLinkDescription
  foxytunesPlayMedia
  foxytunesOpenMinimode
  foxytunesOnMouseMove
  foxytunesOnBrowserStatusChanged
  foxytunesVerifyWidth
  foxytunesRestoreIfHidden
  foxytunesShowRestartBrowserAlert
  foxytunesEmusicSpecificInit
  foxytunesSeaMonkeySpecificInit
  foxytunesThunderbirdSpecificInit
  foxytunesRenameMainDll
  foxytunesShowUpdateAvailableButtonIfNeeded
  foxytunesUpdateAvailableButtonIsDisabled
  foxytunesDisableUpdateAvailableButton
  foxytunesGotoUpdateURL
  foxytunesFoxyTunesHasUpdates
  foxytunesGetFoxyTunesAvailableUpdateVersion
  foxytunesGetFoxyTunesVersion
  foxytunesGetFoxyTunesEMItem
  foxytunesInstallPlatformSpecificLibraryIfNeeded
  foxytunesRemoveRegistryFiles
  foxytunesGetComponentFile
  foxytunesGetHome
  foxytunesGetProfileDir
  foxytunesInsertPlayersMenuItem
  foxytunesInitVolumeSlider
  foxytunesRegisterVolumeSliderEvents
  foxytunesRegisterGlobalScrollEvent
  foxytunesSetPlayerOptionsCustom
  foxytunesSetPlayerOptionsPreset
  foxytunesSetPlayerOptions
  foxytunesDoPlayerSpecificUIChanges
  foxytunesSubscribeToNewsletter
  foxytunesOpenConfigureShortcutsDialog
  foxytunesInitKeyboardShortcuts
  foxytunesOverrideKeyIfNeeded
  foxytunesGetAllKeys
  foxytunesOpenFoxyTunesAboutDialog
  foxytunesToggleAllButtonsVisibility
  foxytunesAllButtonsMouseOut
  foxytunesAllButtonsMouseOver
  foxytunesAllButtonsAutoHideIsOn
  foxytunesToggleVolumeSliderVisibility
  foxytunesToggleButtonVisibility
  foxytunesToggleSeparatorsVisibility
  foxytunesToggleOpenWindowInTab
  foxytunesToggleURLUnescapeTitle
  foxytunesToggleObjectVisibilityWithArrow
  foxytunesScrollOnVolumeControls
  foxytunesDecreaseVolume
  foxytunesIncreaseVolume
  foxytunesRefreshVolumeSliderIfDirty
  foxytunesRefreshVolumeSliderPosition
  foxytunesVolumeSliderPositionDirty
  foxytunesSetVolumeSliderPosition
  foxytunesVolumeSliderChanged
  foxytunesEndTrackInfoTooltip
  foxytunesStartTrackInfoTooltip
  foxytunesHideTrackInfoPopup
  foxytunesShowTrackInfoPopup
  foxytunesTriggerShowTrackInfoPopup
  foxytunesCancelShowTrackInfoPopup
  foxytunesHideTrackInfoBox
  foxytunesTriggerHideTrackInfoBox
  foxytunesCancelHideTrackInfoBox
  foxytunesShowTrackInfoBox
  foxytunesHideAllPopups
  foxytunesHideAllPopupsByType
  foxytunesSetTrackInfoTooltip
  foxytunesGetTrackInfoTooltipText
  foxytunesSetCurrentTrackPosition
  foxytunesUpdatePlanetTooltip
  foxytunesGetCurrentTrackItem
  foxytunesGetCurrentTrackTitle
  foxytunesGetCurrentTrackData
  foxytunesGetVolume
  foxytunesSetVolume
  foxytunesVerifyWMPStartPlaying
  foxytunesDispatchPlayerCommand
  foxytunesUpdateTrackTitleAfterCommand
  foxytunesInitPlayerObjectIfNeeded
  foxytunesSelectPlayer
  foxytunesUpdateRecentPlayer
  foxytunesOnSelectPlayer
  foxytunesReadPreferences
  foxytunesWritePreferences
  foxytunesUpdateRecentCharsetsList
  foxytunesSelectCharset
  foxytunesPopulateRecentCharsets
  foxytunesAddRecentCharSet
  foxytunesTrimRecentCharSets
  foxytunesGetCharSetMenuItem
  foxytunesPopulatePlayers
  foxytunesConfigureCurrentPlayer
  foxytunesOnPlayerListShowing
  foxytunesPopulateCharacterEncodings
  foxytunesCompareCharSets
  gFoxyTunesTimeTools
  FoxyTunesTimeTools
  gFoxyTunesTrackInfoDisplayAutohideTimerID
  gFoxyTunesResizeInitialWidth
  gFoxyTunesResizeStartX
  gbFoxyTunesTrackPressing
  gFoxyTunesTrackTitleQueryInterval
  gFoxyTunesTrackTitleDisplayTimerID
  foxytunesTrackTitleDragStartObserver
  foxytunesTrackTitleDisplayResizeMove
  foxytunesTrackTitleDisplayResizeUp
  foxytunesTrackTitleDisplayResizeDown
  foxytunesTrackTitleToggleAlignment
  foxytunesTrackTitleHideGotoPlanetButton
  foxytunesTrackToggleSeekSlider
  foxytunesTrackTitleToggleScrolling
  foxytunesTrackTitleCopyToClipBoard
  foxytunesToggleTrackTitleDisplayVisibility
  foxytunesTrackTitleAutoHideIsOn
  foxytunesTrackInfoDisplayMouseOut
  foxytunesTrackInfoDisplayMouseOver
  foxytunesTrackTitleDisplayVisibile
  foxytunesSetCurrentTrackTitleLabel
  foxytunesTrackTitleLabelUpdater
  foxytunesUpdateTrackPositionMarker
  foxytunesUpdateTrackTitleLabel
  foxytunesInitTrackTitleLabel
  foxytunesGetTrackInfoLabelElement
  gFoxyTunesCurrentDropTarget
  foxytunesSetFoxyTunesPosition
  foxytunesRenameTagName
  foxyTargetObserver
  foxyDragStartObserver
  foxytunesOnTargetDragDrop
  foxytunesOnTargetDragExit
  foxytunesOnTargetDragOver
  foxytunesSetDropTargetMarker
  foxytunesElementIsToolbarOrStatusbar
  foxytunesRemoveDropClass
  foxytunesHasDropClass
  foxytunesUnInstallDragDropObservers
  foxytunesInstallDragDropObservers
  foxytunesInstallUninstallDragDropObservers
  foxytunesInstallDragDropObserversForElementById
  foxytunesInclude
  gFoxyTunesIncludeRegistry
  foxytunesGetExtensionVersion
  foxytunesOpenSignatuensConfigurationWindow
  foxytunesGetLocaleStringExternalfunction
  foxytunesGetDefaultPlayerForOs
  foxytunesMd5
  foxytunesGetIconPath
  foxytunesGetExtensionPath
  foxytunesEscapeNonAsciiText
  foxytunesPrefToUIElements
  foxytunesUIElementToPref
  gFoxytunesPreferenceManager
  foxytunesPreferenceManager
  foxytunesShowBalloonHelpWithTip
  foxytunesShowBalloonHelp
  foxytunesGetMostRecentWindow
  foxytunesGetBaseWindow
  foxytunesFixLocalStore
  foxytunesDoAndHidePleaseWait
  foxytunesGetAppName
  foxytunesGetAppVersion
  foxytunesGetPlatform
  foxytunesGetPlatformFull
  foxytunesGetDefaultBrowserIcon
  foxytunesGetDefaultBrowserLocation
  foxytunesReadRegistryValue
  foxytunesInitMenupopups
  foxytunesCloseLastContextMenu
  gFoxyTunesLastMenu
  foxytunesSeconds2TimeStr
  foxytunesIsNumber
  foxytunesTryGetFoxyTunesPlayerFromContractID
  foxytunesGetPlayerShortNameFromContractID
  foxytunesIsInMinimode
  foxytunesWindowIsMinimode
  foxytunesWindowIsMinibrowser
  foxytunesClearMenupopup
  foxytunesSanitizeURL
  foxytunesGetClippedText
  foxytunesGetSelection
  foxytunesGetTextFromClipboard
  foxytinesTrimString
  foxytunesShortcutsEnabledByDefault
  foxytunesReadSinglePreference
  foxytunesReadSingleUnicharPreference
  foxytunesWriteSingleUnicharPreference
  foxytunesWriteSinglePreference
  foxytunesGetLocaleString
  foxytunesStringPadRight
  foxytunesShowPrompt
  foxytunesShowAlert
  foxytunesShowAlertWithDelay
  foxytunesOpenInTabs
  foxytunesGoToURL
  foxytunesEmusicGoToUrl
  foxytunesShouldOpenWindowsInTabs
  foxytunesGetEmusicWindow
  foxytunesGetBrowserWindow
  foxytunesRaiseBrowserWindow
  foxytunesGotoPlanet
  foxytunesGetPlanetUrl
  foxytunesOpenBrowserWindow
  gFoxyTunesSanitizer
  foxytunesSanitizer
  foxytunesGetMinibrowserURL
  foxytunesCalculateMinibrowserPosition
  foxytunesShouldUseMinibrowser
  foxytunesLaunchExternalURL
  foxytunesLaunchExternalURLFromThunderbird
  foxytunesAdjustStringForCorrectHost
  getFoxyTunesPlanetBaseURL
  foxytunesIsInEmusic
  foxytunesIsInMozilla
  foxytunesIsInThunderbird
  foxytunesIsInFirefox
  foxytunesIsInIceweasel
  foxytunesIsInMineField
*/

// vim:sw=2 ts=2 et si fdm=marker: