diff --git a/network/web/firefox/actions.py b/network/web/firefox/actions.py new file mode 100644 index 0000000000..2d4cedde4b --- /dev/null +++ b/network/web/firefox/actions.py @@ -0,0 +1,62 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +WorkDir = "mozilla-release" +ObjDir = "build" +locales = "az be bs ca da de el en-US en-GB en-ZA es-AR es-CL es-ES fi fr hr hu it lt nl pl pt-BR pt-PT ro ru sr sv-SE tr uk".split() +xpidir = "%s/xpi" % get.workDIR() +arch = get.ARCH() +ver = ".".join(get.srcVERSION().split(".")[:3]) + +shelltools.export("SHELL", "/bin/sh") + +def setup(): + # Google API key + shelltools.echo("google_api_key", "AIzaSyBINKL31ZYd8W5byPuwTXYK6cEyoceGh6Y") + pisitools.dosed(".mozconfig", "%%PWD%%", get.curDIR()) + pisitools.dosed(".mozconfig", "%%FILE%%", "google_api_key") + pisitools.dosed(".mozconfig", "##JOBCOUNT##", get.makeJOBS()) + + # LOCALE + shelltools.system("rm -rf langpack-ff/*/browser/defaults") + if not shelltools.isDirectory(xpidir): shelltools.makedirs(xpidir) + for locale in locales: + shelltools.system("wget -c -P %s ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/%s/linux-%s/xpi/%s.xpi" % (xpidir, ver, arch, locale)) + shelltools.makedirs("langpack-ff/langpack-%s@firefox.mozilla.org" % locale) + shelltools.system("unzip -uo %s/%s.xpi -d langpack-ff/langpack-%s@firefox.mozilla.org" % (xpidir, locale, locale)) + print "Replacing browser.properties for %s locale" % locale + shelltools.copy("browserconfig.properties", "langpack-ff/langpack-%s@firefox.mozilla.org/browser/chrome/%s/locale/branding/" % (locale, locale)) + shelltools.copy("browserconfig.properties", "browser/branding/official/locales/") + + shelltools.makedirs(ObjDir) + shelltools.cd(ObjDir) + shelltools.system("../configure --prefix=/usr --libdir=/usr/lib --disable-strip --disable-install-strip") + shelltools.system("sed -i '/^ftglyph.h/ i ftfntfmt.h' ../config/system-headers") + + +def build(): + shelltools.cd(ObjDir) + autotools.make("-f ../client.mk build") + +def install(): + autotools.rawInstall("-f client.mk DESTDIR=%s INSTALL_SDK= install" % get.installDIR()) + + # Install language packs + pisitools.insinto("/usr/lib/firefox/browser/extensions", "./langpack-ff/*") + + # Create profile dir, we'll copy bookmarks.html in post-install script + pisitools.dodir("/usr/lib/firefox/browser/defaults/profile") + + # Install branding icon + pisitools.insinto("/usr/share/pixmaps", "browser/branding/official/default256.png", "firefox.png") + + # Install docs + pisitools.dodoc("LEGAL", "LICENSE") \ No newline at end of file diff --git a/network/web/firefox/comar/package.py b/network/web/firefox/comar/package.py new file mode 100644 index 0000000000..3fedcb92f9 --- /dev/null +++ b/network/web/firefox/comar/package.py @@ -0,0 +1,54 @@ +#!/usr/bin/python + +import os +import re + +def symlink(src, dest): + try: + os.symlink(src, dest) + except OSError: + pass + +def postInstall(fromVersion, fromRelease, toVersion, toRelease): + os.environ["HOME"] = "/root" + os.system("/bin/touch /usr/lib/firefox/components/compreg.dat") + os.system("/bin/touch /usr/lib/firefox/components/xpti.dat") + os.system("/usr/lib/firefox/firefox -register") + os.system("/bin/touch /usr/lib/firefox/.autoreg") + + lang = None + + if os.path.exists("/etc/mudur/language"): + lang = open("/etc/mudur/language").read().strip() + elif os.path.exists("/etc/env.d/03locale"): + fileContent = open("/etc/env.d/03locale").read() + lang = re.search("^LANG=(.*)$", fileContent, flags=re.M) + if lang: + lang = lang.group(1).split(".")[0] + + if lang: + # Bookmarks & Search plugins + if lang.startswith("tr"): + symlink("/usr/lib/firefox/pisilinux/bookmarks-tr.html", "/usr/lib/firefox/browser/defaults/profile/bookmarks.html") + #symlink("/usr/lib/firefox/pisilinux/pisilinux-wiki_tr.xml", "/usr/lib/firefox/browser/searchplugins/pisilinux-wiki.xml") + elif lang.startswith("nl"): + symlink("/usr/lib/firefox/pisilinux/bookmarks-nl.html", "/usr/lib/firefox/browser/defaults/profile/bookmarks.html") + #symlink("/usr/lib/firefox/pisilinux/pisilinux-wiki_nl.xml", "/usr/lib/firefox/browser/searchplugins/pisilinux-wiki.xml") + elif lang.startswith("pt"): + #symlink("/usr/lib/firefox/pisilinux/pisilinux-wiki_pt.xml", "/usr/lib/firefox/browser/searchplugins/pisilinux-wiki.xml") + #TODO: translate bookmarks to pt also. + symlink("/usr/lib/firefox/pisilinux/bookmarks-en.html", "/usr/lib/firefox/browser/defaults/profile/bookmarks.html") + elif lang.startswith("de"): + symlink("/usr/lib/firefox/pisilinux/bookmarks-de.html", "/usr/lib/firefox/browser/defaults/profile/bookmarks.html") + #symlink("/usr/lib/firefox/pisilinux/pisilinux-wiki_en.xml", "/usr/lib/firefox/browser/searchplugins/pisilinux-wiki.xml") + elif lang.startswith("es"): + symlink("/usr/lib/firefox/pisilinux/bookmarks-en.html", "/usr/lib/firefox/browser/defaults/profile/bookmarks.html") + #else: + #symlink("/usr/lib/firefox/pisilinux/pisilinux-wiki_en.xml", "/usr/lib/firefox/browser/searchplugins/pisilinux-wiki.xml") + +def preRemove(): + for f in ("/usr/lib/firefox/.autoreg", "/usr/lib/firefox/browser/defaults/profile/bookmarks.html", "/usr/lib/firefox/browser/searchplugins/pisilinux-wiki.xml"): + try: + os.unlink(f) + except: + pass diff --git a/network/web/firefox/files/firefox-install-dir.patch b/network/web/firefox/files/firefox-install-dir.patch new file mode 100644 index 0000000000..4cf976b1a3 --- /dev/null +++ b/network/web/firefox/files/firefox-install-dir.patch @@ -0,0 +1,13 @@ +diff -up firefox-29.0/mozilla-release/config/baseconfig.mk.orig firefox-29.0/mozilla-release/config/baseconfig.mk +--- mozilla-release/config/baseconfig.mk.orig 2014-04-22 15:38:52.948165295 +0200 ++++ mozilla-release/config/baseconfig.mk 2014-04-22 15:42:20.387481673 +0200 +@@ -4,7 +4,7 @@ + # whether a normal build is happening or whether the check is running. + includedir := $(includedir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) + idldir = $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) +-installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) ++installdir = $(libdir)/$(MOZ_APP_NAME) + sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION) + ifndef TOP_DIST + TOP_DIST = dist + diff --git a/network/web/firefox/files/mozconfig b/network/web/firefox/files/mozconfig new file mode 100644 index 0000000000..70b4a74f49 --- /dev/null +++ b/network/web/firefox/files/mozconfig @@ -0,0 +1,41 @@ +. $topsrcdir/browser/config/mozconfig +mk_add_options MOZ_MAKE_FLAGS="##JOBCOUNT##" + +# Comment out following options if you have not installed +# recommended dependencies: +ac_add_options --with-system-nspr +ac_add_options --with-system-nss +ac_add_options --with-system-jpeg +ac_add_options --with-system-zlib +ac_add_options --with-system-bz2 +ac_add_options --with-system-png +#ac_add_options --with-system-libevent # +#ac_add_options --with-system-libvpx # +#ac_add_options --with-system-icu +ac_add_options --enable-system-hunspell +ac_add_options --enable-system-sqlite +ac_add_options --enable-system-ffi +#ac_add_options --enable-system-cairo +ac_add_options --enable-system-pixman +# The BLFS editors recommend not changing anything below this line: +ac_add_options --prefix=/usr +ac_add_options --libdir=/usr/lib +ac_add_options --enable-application=browser +ac_add_options --enable-pulseaudio +#ac_add_options --enable-startup-notification # +ac_add_options --disable-crashreporter +ac_add_options --disable-updater +ac_add_options --disable-installer +ac_add_options --disable-debug-symbols +ac_add_options --with-google-api-keyfile="%%PWD%%/%%FILE%%" + +ac_add_options --disable-tests + +ac_add_options --enable-optimize +ac_add_options --enable-gtk3 +ac_add_options --enable-gstreamer=1.0 +ac_add_options --enable-official-branding +ac_add_options --enable-safe-browsing + + +mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/build \ No newline at end of file diff --git a/network/web/firefox/files/pisilinux/browserconfig.properties b/network/web/firefox/files/pisilinux/browserconfig.properties new file mode 100644 index 0000000000..de11fbe81b --- /dev/null +++ b/network/web/firefox/files/pisilinux/browserconfig.properties @@ -0,0 +1,4 @@ +browser.startup.homepage=about:home|http://www.pisilinux.org +browser.startup.homepage_reset=about:home|http://www.pisilinux.org +startup.homepage_override_url=about:home|http://www.pisilinux.org + diff --git a/network/web/firefox/files/pisilinux/default-prefs.js b/network/web/firefox/files/pisilinux/default-prefs.js new file mode 100644 index 0000000000..32031ec6e6 --- /dev/null +++ b/network/web/firefox/files/pisilinux/default-prefs.js @@ -0,0 +1,69 @@ +// For details look at http://kb.mozillazine.org/Category:Preferences + +//pref("network.protocol-handler.app.callto", "skype"); +//pref("network.protocol-handler.app.lastfm","lastfm"); +//pref("network.protocol-handler.app.mailto", "kmail-firefox"); +//pref("network.protocol-handler.app.mms", "kaffeine"); +//pref("network.protocol-handler.expose.callto", true); +//pref("network.protocol-handler.expose.lastfm", true); +//pref("network.protocol-handler.expose.mailto", true); +//pref("network.protocol-handler.expose.mms", true); + +pref("browser.EULA.override", true); +pref("browser.backspace_action", 0); +pref("browser.display.screen_resolution", 0); +pref("browser.display.show_image_placeholders", false); +pref("browser.display.use_document_fonts", 1); +pref("browser.link.open_external", 3); +pref("browser.startup.homepage_override.mstone", "ignore"); +pref("browser.startup.page", 1); +pref("browser.startup.homepage", "chrome://browserconfig.properties"); +pref("browser.tabs.autoHide", false); +pref("browser.shell.checkDefaultBrowser", false); +pref("browser.throbber.url", "chrome://browserconfig.properties"); +pref("general.autoScroll", true); +pref("general.smoothScroll", false); +pref("general.useragent.vendor", "Pisi Linux"); +pref("general.useragent.vendorSub", "2011"); +pref("middlemouse.contentLoadURL", false); +pref("spellchecker.dictionary", "tr-TR"); +pref("startup.homepage_override_url", "chrome://browserconfig.properties"); +pref("intl.locale.matchOS", true); +pref("media.peerconnection.enabled", true); + +// Disable addon check UI, starting from release 8.0 +pref("dom.ipc.plugins.enabled.nswrapper*", false); +pref("extensions.shownSelectionUI", true); +pref("extensions.autoDisableScope", 0); + +pref("font.default.null", "sans-serif"); +pref("font.default.tr", "sans-serif"); +pref("font.default.x-unicode", "sans-serif"); +pref("font.default.x-western", "sans-serif"); +pref("font.minimum-size.null", 10); +pref("font.minimum-size.tr", 10); +pref("font.minimum-size.x-central-euro", 10); +pref("font.minimum-size.x-unicode", 10); +pref("font.minimum-size.x-user-def", 10); +pref("font.minimum-size.x-western", 10); +pref("font.size.fixed.null", 15); +pref("font.size.variable.null", 15); +pref("font.size.variable.tr", 15); +pref("font.size.variable.x-unicode", 15); +pref("font.size.variable.x-user-def", 15); +pref("font.size.variable.x-western", 15); +pref("font.name.monospace.null", "DejaVu Sans Mono"); +pref("font.name.monospace.tr", "DejaVu Sans Mono"); +pref("font.name.monospace.x-central-euro", "DejaVu Sans Mono"); +pref("font.name.monospace.x-unicode", "DejaVu Sans Mono"); +pref("font.name.monospace.x-user-def", "DejaVu Sans Mono"); +pref("font.name.monospace.x-western", "DejaVu Sans Mono"); +pref("font.name.sans-serif.null", "DejaVu Sans"); +pref("font.name.sans-serif.tr", "DejaVu Sans"); +pref("font.name.sans-serif.x-central-euro", "DejaVu Sans"); +pref("font.name.sans-serif.x-unicode", "DejaVu Sans"); +pref("font.name.sans-serif.x-user-def", "DejaVu Sans"); +pref("font.name.sans-serif.x-western", "DejaVu Sans"); +pref("font.name.serif.null", "DejaVu Serif"); + + diff --git a/network/web/firefox/files/pisilinux/firefox-l10n.js b/network/web/firefox/files/pisilinux/firefox-l10n.js new file mode 100644 index 0000000000..c47ab587f3 --- /dev/null +++ b/network/web/firefox/files/pisilinux/firefox-l10n.js @@ -0,0 +1,9 @@ +// Use LANG environment variable to choose locale +pref("intl.locale.matchOS", true); + +// Disable default browser checking. +pref("browser.shell.checkDefaultBrowser", false); + +// Don't disable our bundled extensions in the application directory +pref("extensions.autoDisableScopes", 11); +pref("extensions.shownSelectionUI", true); \ No newline at end of file diff --git a/network/web/firefox/files/pisilinux/mozillafirefox.desktop b/network/web/firefox/files/pisilinux/mozillafirefox.desktop new file mode 100644 index 0000000000..21c6a304fe --- /dev/null +++ b/network/web/firefox/files/pisilinux/mozillafirefox.desktop @@ -0,0 +1,56 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Firefox +GenericName=Web Browser +GenericName[ca]=Navegador web +GenericName[cs]=Webový prohlížeč +GenericName[de]=Webbrowser +GenericName[es]=Navegador web +GenericName[fa]=مرورگر اینترنتی +GenericName[fi]=WWW-selain +GenericName[fr]=Navigateur Web +GenericName[hu]=Webböngésző +GenericName[it]=Browser Web +GenericName[ja]=ウェブ・ブラウザ +GenericName[ko]=웹 브라우저 +GenericName[nb]=Nettleser +GenericName[nl]=Webbrowser +GenericName[nn]=Nettlesar +GenericName[no]=Nettleser +GenericName[pl]=Przeglądarka WWW +GenericName[pt]=Navegador Web +GenericName[pt_BR]=Navegador Web +GenericName[sk]=Internetový prehliadač +GenericName[sv]=Webbläsare +GenericName[tr]=Web Tarayıcı +GenericName[zh_CN]=万维网浏览器 +GenericName[zh_TW]=網頁瀏覽器 +Comment=Browse the Web +Comment[ca]=Navegueu per el web +Comment[cs]=Prohlížení stránek World Wide Webu +Comment[de]=Im Internet surfen +Comment[es]=Navegue por la web +Comment[fa]=صفحات شبکه جهانی اینترنت را مرور نمایید +Comment[fi]=Selaa Internetin WWW-sivuja +Comment[fr]=Navigue sur Internet +Comment[hu]=A világháló böngészése +Comment[it]=Esplora il web +Comment[ja]=ウェブを閲覧します +Comment[ko]=웹을 돌아 다닙니다 +Comment[nb]=Surf på nettet +Comment[nl]=Verken het internet +Comment[nn]=Surf på nettet +Comment[no]=Surf på nettet +Comment[pl]=Przeglądanie stron WWW +Comment[pt]=Navegue na Internet +Comment[pt_BR]=Navegue na Internet +Comment[sk]=Prehliadanie internetu +Comment[sv]=Surfa på webben +Comment[tr]=İnternette gezintiye çıkın +Exec=/usr/bin/firefox %u +Icon=/usr/share/pixmaps/firefox.png +Terminal=false +Type=Application +StartupNotify=true +MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;application/x-xpinstall; +Categories=Application;Network; diff --git a/network/web/firefox/files/pisilinux/pisilinux_bookmark-de.html b/network/web/firefox/files/pisilinux/pisilinux_bookmark-de.html new file mode 100644 index 0000000000..cd356e52ea --- /dev/null +++ b/network/web/firefox/files/pisilinux/pisilinux_bookmark-de.html @@ -0,0 +1,73 @@ + + + +Bookmarks +

Lesezeichen-Menü

+ +

+

Kürzlich verwendete Schlagwörter +
Kürzlich als Lesezeichen gesetzt +
+

Lesezeichen-Symbolleiste

+
Add links for bookmark toolbar +

+

Links über PiSilinux

+
Verschiedene Internetlinks über PisiLinux +

+

PisiLinux +
PiSiLinux Forum +
PisiLinux +
PiSiLinux Bug-Tracking +
Pisi Linux Team +
+
Pisi Linux Wiki +
PisiLinux Worldforum +

+


+

Linux

+

+

Linux – Wikipedia +
Warum Linux besser ist +
Pro-Linux +
freiesMagazin +
LinuxUser - Das Magazin +
Galileo Computing - <openbook> +
Bücher online lesen und herunterladen +

+

Freie Software

+
Links von der freien Software-Welt +

+

KDE +
The K Desktop-Umgebung +
Mozilla +
Mozilla +
LibreOffice +
Gimp - Bildbearbeitung +
Digikam - Fotoverwaltung +
Kdenlive – Videoeditor +
VLC - Mediaplayer +

+

Computerportale

+

+

heise online +
Golem.de: IT-News +
ComputerBase +
Tom's Hardware +

+

Nachrichtenportale

+

+

SPIEGEL ONLINE +
FOCUS Online +
WELT ONLINE +
ARD Tagesschau +
News auf N24 +
n-tv.de +
derStandard.at +

+

Wikipedia +
Freie Enzyklopädie +
OpenStreetMap +

+

diff --git a/network/web/firefox/files/pisilinux/pisilinux_bookmark-en.html b/network/web/firefox/files/pisilinux/pisilinux_bookmark-en.html new file mode 100644 index 0000000000..ceb50a6bcd --- /dev/null +++ b/network/web/firefox/files/pisilinux/pisilinux_bookmark-en.html @@ -0,0 +1,56 @@ + + + +Bookmarks +

Bookmarks Menu

+ +

+

Recently Bookmarked +
Recent Tags +
+

Bookmarks Toolbar

+
Add links for bookmark toolbar +

+

PisiLinux +
PiSiLinux Forum +
Turkish Pisi Ansiklopedisi +
English Pisi Encyclopedia +
PiSiLinux bug system +
Pisi Linux Team +
Pisi Linux +

PisiLinux Links

+
Various Internet links about PisiLinux +

+

Worldforum PiSiLinux +
PiSiLinux Translation Platform +
+
Add yourself here! +

+


+
Wikipedia +
Free encyclopedia +

Planets

+
Planets +

+

Perl developers +
Perl developers +
Planet Java +
Java Developers +
Planet Python +
Python developers +
KDE developers blog +

+

Free Software

+
Links from free software world +

+

Mozilla +
Mozilla +
KDE +
The K Desktop Environmen +
OpenOffice.org +
OpenOffice +

+

+

diff --git a/network/web/firefox/files/pisilinux/pisilinux_bookmark-nl.html b/network/web/firefox/files/pisilinux/pisilinux_bookmark-nl.html new file mode 100644 index 0000000000..a2a0423ede --- /dev/null +++ b/network/web/firefox/files/pisilinux/pisilinux_bookmark-nl.html @@ -0,0 +1,150 @@ + + + +Bookmarks +

Bladwijzermenu

+ +

+

Recent aangemaakte bladwijzers +
Recente labels +
+
+

Bladwijzerwerkbalk

+

+

PiSiLinux

+
Alles over PisiLinux +

+

PiSiLinux World +
PisiLinux +
PiSiLinux Forum +
Bugzilla Main Page +
PiSiLinux Translation Platform +
+

+


+

Computers

+

+

Webwereld +
Tweakers.net +
AllesLinux.com forum +
NedLinux.nl +
Linux Online +
Informatie over het Linux Besturing Systeem. +

+

Informatie

+
Als u iets wilt opzoeken, van telefoonnummer tot satelietfoto +

+

De Telefoongids +
De Telefoongids en de Bedrijvengids van heel Nederland. Vind snel en makkelijk adres, telefoon, fax en mobiele nummers van personen en bedrijven. +
Gouden Gids +
+
TNT Post +
+
ANWB +
Google Maps +
+
NS +
NS - Home +
OV-reisinformatie +
+
Wikipedia +
Wikipedia is een meertalige encyclopedie, waarvan de inhoud vrij beschikbaar is en ook altijd zal blijven. Iedereen kan hier kennis toevoegen! +
Apotheek.nl +
Belastingdienst +
Op de site van de Belastingdienst vindt u informatie over belastingen voor particulieren, ondernemers en belastingconsulenten. U kunt via deze site programma's, formulieren en brochures downloaden en rekenprogramma's gebruiken. Daarnaast kunt u informatie vinden over Toeslagen en over de Douane. Verder treft u op de site algemene informatie aan over de organisatie van de Belastingdienst. +

+

Banken

+

+

ABN AMRO +
Fortis.nl - Fortis is bankieren en verzekeren +
ING – Particulier +
Rabobank - Homepage Particulieren +
SNS Bank - Homepage +
SNS Bank biedt hoogwaardige internetdiensten en innovatieve producten op het gebied van hypotheken, sparen, beleggen, betalen, lenen en verzekeren +

+

Vrije tijd

+

+

Reizen

+

+

Vakantie Discounter +
Bekijk al onze zonnige vakanties en aanbiedingen op Vakantie Discounter +
D-reizen +
D-reizen.nl... Dezelfde reis voor de laagste prijs. +
Peter Langhout Reizen +
Peter Langhout reizen bied u de meeste reizen voor de beste prijzen. +

+

Televisie

+

+

Publieke omroep +
TVGids.nl +
RTL +
SBS +
MTV.nl - Nu met Overdrive: Breedband streaming video's, clips, tv shows en web exclusive's +
TMF.nl +

+

Film en DVD

+

+

MovieMeter.nl +
Internet Movie Database +
Filmfocus +
Alles over film: nieuws, agenda, trailers, recensies, filmfragmenten, films op tv, interviews, wallpapers en screensavers. +
Videoland +

+

Muziek

+

+

eMusic +
MP3 muziek download site. 25 gratis MP3's bij een proef abonnement. Download en koop legale muziek online. +
MusicMeter.nl +
OOR.nl +

+

Tijdschriften

+

+

Revu.nl +
Panorama +
Margriet +

+

+

Nieuws

+

+

Nu.nl +
NU.nl geeft dagelijks algemeen-, financieel-, sport-, internet-, film en TV nieuws. Tevens staan er columns, interviews, ingezonden brieven. +
Algemeen Dagblad +
nrc +
NRC Handelsblad +
Trouw +
Trouw de Verdieping op internet, voor het laatste nieuws en verdieping over zorg en gezondheid, opvoeding en onderwijs, religie en filosofie en natuur(tochten) en milieu, met de dagelijkse katernen deVerdieping en deGids, en op zaterdag Letter&Geest. +
Volkskrant +
NOS Teletekst +
WeerOnline +
Buienradar.nl +
Buienradar.be +

+

Winkelen

+

+

Kleding

+

+

Wehkamp.nl +
Online winkelen op internet bij Wehkamp. 's lands meest actuele thuiswinkel online. Voor 22 uur besteld, morgen in huis! +
H&M +
Mangoshop.com +

+

Media

+

+

Bol.com +
PDAshop.nl +
Free Record Shop +
Free Record Shop CD/Books/DVD/Games +

+

Albert.nl +
Albert, uw dagelijkse bezorgservice van 3 winkels: Albert Heijn, Etos en Gall & Gall. Voor uw dagelijkse boodschappen en voorraad. Winkelen wanneer het u uitkomt. Met een ruim assortiment en vele aantrekkelijke aanbiedingen. +
Marktplaats.nl +
Kopen en verkopen van tweedehands of nieuwe producten en van diensten doet u op Marktplaats.nl, de advertentiesite van Nederland. Meer dan 120.000 nieuwe advertenties per dag. Marktplaats.nl is een compleet overzicht van vraag en aanbod. +
eBay +
De leukste manier om te kopen en te verkopen op het Internet! Probeer het en vind de duizenden koopjes vanaf 1 euro! +
Kieskeurig +
KIESKEURIG is de grootste product- en prijsvergelijksite van Nederland. Het doel van KIESKEURIG is om de consument betrouwbare, onafhankelijke informatie te verschaffen over diverse producten. Naast het vergelijken van producten en prijzen is het mogelijk om ervaringen van andere gebruikers te lezen of zelf een review achter te laten. +

+

+

diff --git a/network/web/firefox/files/pisilinux/pisilinux_bookmark-tr.html b/network/web/firefox/files/pisilinux/pisilinux_bookmark-tr.html new file mode 100644 index 0000000000..20adc7b620 --- /dev/null +++ b/network/web/firefox/files/pisilinux/pisilinux_bookmark-tr.html @@ -0,0 +1,195 @@ + + + +Bookmarks +

Yer imleri menüsü

+ +

+

Yer imlerine yeni eklenenler +
Son kullanılan etiketler +
+
Yer imlerine yeni eklenenler +
Son kullanılan etiketler +

sık kullanılan adres önerileri

+
Türkiye'den en çok girilen sitelere yer verilerek, kullanıcıların birkaç harf yazarak hedefledikleri sitenin adresine ulaşmaları sağlanmaya çalışılmıştır. +

+

YouTube - Broadcast Yourself. +
Firefox için Google +
MSN Türkiye +
R10.net - Webmaster Forumu +
T.C. Millî Eğitim Bakanlığı +
Dailymotion – Türkiye’deki En İyi ve En Eğlenceli Bağımsız Video Platformu! +
DonanımHaber - Sık Sık Güncellenen Haber Sitesi +
İzlesene.com | Türkiye'nin Video Sitesi +
Blogcu - Blogcu.com - Ücretsiz Türkçe Blog Servisi +
Memurlar.Net +
sesli sözlük | ingilizce türkçe çeviri tüm sözlükler +
Zargan ingilizce sözlük, ingilizce türkçe cep sözlük +
The Internet Movie Database (IMDb) +
Sinemalar.com ~ Türkiye'nin Lider Sinema Sitesi +
en iyi yatırım kendine yatırım - uludağ sözlük +

+

Yer imi araç çubuğu

+
Yer imi araç çubuğunda gösterilecek bağlantıları ekleyin +

+

En çok ziyaret edilenler +
PisiLinux +

PiSilinux Durakları

+
PiSilinux ile ilgili çeşitli Internet adresleri. +

+

PiSiLinux Forum +
Twitter'da PiSilinux +
+
Hata Takip Sistemi +
PiSilinux Çeviri Platformu +
Türkçe Pisi Ansiklopedisi +
İngilizce Pisi Ansiklopedisi +
Pisi Linux Team +

+

Topluluk

+
Türkçe PiSilinux ve Özgür Yazılım toplulukları... +

+

Özgürlük İçin +
+
Linux Kullanıcıları Derneği +
Linux Belgelendirme Projesi +
+
LibreOffice Türkiye +
Mozilla Türkiye +
GNOME Türkiye +
KDE Türkiye +
OpenOffice.org Türkiye +
WordPress Türkiye +
+
Debian Türkiye +
Gentoo Türkiye +
Linux Mint Türkiye +
OpenSUSE.org Türkiye +
Slackware Türkiye +
Ubuntu Türkiye +
Özgür Lisanslar +

+


+
Vikipedi +
Herkesin katkıda bulunabildiği özgür ansiklopedi. +

Bilgi Sorgulama

+
Çeşitli bilgi sorgulama sistemleri +

+

Vatandaşlık Portalı +
+
Türk Telekom : Rehber +
Güncel Türkçe Sözlük +
Türk Dil Kurumu Yazım Kılavuzu +
Hava Tahmini +
Nöbetçi Eczaneler +

+

Bankalar

+
Bankaların internet şubeleri +

+

A Bank +
A&T BANK +
Akbank +
Aktif Bank +
Anadolu Bank +
Citibank +
DenizBank +
Eurobank Tekfen +
Fibabanka +
Finansbank +
Garanti Bankası +
Halkbank +
HSBC +
ING Bank +
Şekerbank +
TEB +
Eurobank Tekfen +
Tbank +
Tekstil Bank +
TurkishBank +
Türkiye İş Bankası +
VakıfBank +
Yapı Kredi +
Ziraat Bankası +

+

Haberler

+
TV, gazete, internet haber siteleri... +

+

E-haber

+

+

Açık Gazete +
BBC Turkce +
Bianet +
Dipnot TV +
Dördüncü Kuvvet Medya +
Gazeteport +
haber365.com | 365 Gün Haber! +
MYNET haber +
NTVMSNBC +
+
ekolay.net | spor +
HABERTÜRK Spor +
NTVSpor.net +
Sporx +
+
Zaytung +

+

Ajans

+

+

Anadolu Ajansı +
Anka Haber Ajansı +
Cihan Haber Ajansı +
Doğan Haber Ajansı +
İhlas Haber Ajansı +

+

Gazeteler

+

+

Akşam +
BirGün +
Bugün +
Cumhuriyet +
Cumhuriyet Gazetesi +
Dünya +
Evrensel +
Güneş +
Habertürk +
Hürriyet +
Milliyet +
Ortadoğu +
Özgür Gündem +
Posta +
Radikal +
Sabah +
Star Gazete +
Takvim +
Taraf +
Türkiye +
Vatan +
Yeni Asya +
Yeniçağ +
Yeni Şafak +
Zaman +
+
Fotomaç +

+

Televizyonlar

+

+

Digiturk TV Rehberi +
+
ATV +
CNBC-E +
CNN TÜRK +
Kanal D +
FOX +
Habertürk +
NTV +
Show TV +
Star TV +
TRT +
tv8 +

+

+

Açık Dizin +

+

diff --git a/network/web/firefox/files/rhbz-966424.patch b/network/web/firefox/files/rhbz-966424.patch new file mode 100644 index 0000000000..c4c332e9e7 --- /dev/null +++ b/network/web/firefox/files/rhbz-966424.patch @@ -0,0 +1,23 @@ +--- a/toolkit/modules/CertUtils.jsm ++++ b/toolkit/modules/CertUtils.jsm +@@ -170,17 +170,19 @@ this.checkCert = + issuerCert = issuerCert.QueryInterface(Ci.nsIX509Cert3); + var tokenNames = issuerCert.getAllTokenNames({}); + + if (!tokenNames || !tokenNames.some(isBuiltinToken)) + throw new Ce(certNotBuiltInErr, Cr.NS_ERROR_ABORT); + } + + function isBuiltinToken(tokenName) { +- return tokenName == "Builtin Object Token"; ++ return tokenName == "Builtin Object Token" || ++ tokenName == "Default Trust" || ++ tokenName == "System Trust"; + } + + /** + * This class implements nsIBadCertListener. Its job is to prevent "bad cert" + * security dialogs from being shown to the user. It is better to simply fail + * if the certificate is bad. See bug 304286. + * + * @param aAllowNonBuiltInCerts (optional) diff --git a/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_en.xml b/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_en.xml new file mode 100644 index 0000000000..b379c644d4 --- /dev/null +++ b/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_en.xml @@ -0,0 +1,10 @@ + +PardusWiki (English) +PardusWiki +UTF-8 +data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH1gcLASIMwlRuvwAAAwZJREFUOMttk8tuG3UYxX//8djJ+DZx42A7sWI3UuzEiWlLq6oXBEJBLFqBkEBiwYJ3ALFC6iPwAizYIDYIFrQNEiqRgkIb5VKqJi0kxG1KM7Vjj++O7RmPZ1igJEXhrI4+6RwdfTpH8BI2H23Gut1u1ur1+D+43W4UxbuRyWTyhzf5kNxfX/904c7tufhY9BrYCCHAAdu2EZKEAGwHXuSL8xsbD3/JZl/9EkAAaNpe4PvvvlnuHBQyB602hmni8bgBqFZbqKoPRVFoNluEw0P4AvHHH3z48aVINNqUARzHuaEMOplOy+LBw21CQwGKJZ10aoInT59jO338fh/djsH7776JJPcztuPcAD6XAAzDwCU5yLJMZipJvdlCUQZ57/pVDMPEth16lsWQ6qfftxHYmKZ5/INqtULAr3Dh7EV0fZ/IsIzXqyA5B8y9MYUa9GH2egSDIc6cTfPXTomDVuvYQNd1BgZkdnNr7O/cJj1cRxmERg5mRyDgg3ZXoFWGKGoSHk+USrUMgARQqVRwSQ6rd+/g8SfZKUT4fUumYmZoOLP88czLrj6GW4mzdm8ByfWv5iiBqgYpF57RNyrIynnqtRTjkyO8/dYFYpFT7GlF5n9eQ3btYnS2qdfbJEaCxwlmZmZvNdtSPhVvsrf1I6cTw8xMJxE46OUaLtlFSJXRn94k8UoDy/bm0+n0raMEyeTE4uryQqmw4ooN+Ea4cuUMna7F7t95HBvCYZWpdBJRDiPsGtOXr5ZGR8cW/9PEXs/E77URZotisYjiU3mulZBdLhTvAEtLK6QCTXAsrJ7BiSqbZhdZFkxHyvzw01fo7QSJiUk8Hjf3vr1LQNpm6p0aO5qCYXRPGrhl6Ysn+sTN2KnHXJrc4v72HvqLDjgWycADzk12sCyB1kgj/7n60QmDWsNa9MU/md8s/XpNNtZ5LbWPkH4D4eD0+1Q7UUrl84ROz8371HHtUCdenmsul4utLC9lE/Hg1yVtZbS6/wghBKFIllDk3Gah1P3s4uXXNxLjiaM5/wPbbkrE9RxzFQAAAABJRU5ErkJggg== + + + +http://en.pardus-wiki.org/Special:Search + diff --git a/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_es.xml b/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_es.xml new file mode 100644 index 0000000000..396c08ad3b --- /dev/null +++ b/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_es.xml @@ -0,0 +1,10 @@ + +PisiWiki (español) +PisiWiki +UTF-8 +data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH1gcLASIMwlRuvwAAAwZJREFUOMttk8tuG3UYxX//8djJ+DZx42A7sWI3UuzEiWlLq6oXBEJBLFqBkEBiwYJ3ALFC6iPwAizYIDYIFrQNEiqRgkIb5VKqJi0kxG1KM7Vjj++O7RmPZ1igJEXhrI4+6RwdfTpH8BI2H23Gut1u1ur1+D+43W4UxbuRyWTyhzf5kNxfX/904c7tufhY9BrYCCHAAdu2EZKEAGwHXuSL8xsbD3/JZl/9EkAAaNpe4PvvvlnuHBQyB602hmni8bgBqFZbqKoPRVFoNluEw0P4AvHHH3z48aVINNqUARzHuaEMOplOy+LBw21CQwGKJZ10aoInT59jO338fh/djsH7776JJPcztuPcAD6XAAzDwCU5yLJMZipJvdlCUQZ57/pVDMPEth16lsWQ6qfftxHYmKZ5/INqtULAr3Dh7EV0fZ/IsIzXqyA5B8y9MYUa9GH2egSDIc6cTfPXTomDVuvYQNd1BgZkdnNr7O/cJj1cRxmERg5mRyDgg3ZXoFWGKGoSHk+USrUMgARQqVRwSQ6rd+/g8SfZKUT4fUumYmZoOLP88czLrj6GW4mzdm8ByfWv5iiBqgYpF57RNyrIynnqtRTjkyO8/dYFYpFT7GlF5n9eQ3btYnS2qdfbJEaCxwlmZmZvNdtSPhVvsrf1I6cTw8xMJxE46OUaLtlFSJXRn94k8UoDy/bm0+n0raMEyeTE4uryQqmw4ooN+Ea4cuUMna7F7t95HBvCYZWpdBJRDiPsGtOXr5ZGR8cW/9PEXs/E77URZotisYjiU3mulZBdLhTvAEtLK6QCTXAsrJ7BiSqbZhdZFkxHyvzw01fo7QSJiUk8Hjf3vr1LQNpm6p0aO5qCYXRPGrhl6Ysn+sTN2KnHXJrc4v72HvqLDjgWycADzk12sCyB1kgj/7n60QmDWsNa9MU/md8s/XpNNtZ5LbWPkH4D4eD0+1Q7UUrl84ROz8371HHtUCdenmsul4utLC9lE/Hg1yVtZbS6/wghBKFIllDk3Gah1P3s4uXXNxLjiaM5/wPbbkrE9RxzFQAAAABJRU5ErkJggg== + + + +http://es.pardus-wiki.org/Special:Search + diff --git a/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_nl.xml b/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_nl.xml new file mode 100644 index 0000000000..52364a6a07 --- /dev/null +++ b/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_nl.xml @@ -0,0 +1,10 @@ + +PardusWiki (Dutch) +PardusWiki +UTF-8 +data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH1gcLASIMwlRuvwAAAwZJREFUOMttk8tuG3UYxX//8djJ+DZx42A7sWI3UuzEiWlLq6oXBEJBLFqBkEBiwYJ3ALFC6iPwAizYIDYIFrQNEiqRgkIb5VKqJi0kxG1KM7Vjj++O7RmPZ1igJEXhrI4+6RwdfTpH8BI2H23Gut1u1ur1+D+43W4UxbuRyWTyhzf5kNxfX/904c7tufhY9BrYCCHAAdu2EZKEAGwHXuSL8xsbD3/JZl/9EkAAaNpe4PvvvlnuHBQyB602hmni8bgBqFZbqKoPRVFoNluEw0P4AvHHH3z48aVINNqUARzHuaEMOplOy+LBw21CQwGKJZ10aoInT59jO338fh/djsH7776JJPcztuPcAD6XAAzDwCU5yLJMZipJvdlCUQZ57/pVDMPEth16lsWQ6qfftxHYmKZ5/INqtULAr3Dh7EV0fZ/IsIzXqyA5B8y9MYUa9GH2egSDIc6cTfPXTomDVuvYQNd1BgZkdnNr7O/cJj1cRxmERg5mRyDgg3ZXoFWGKGoSHk+USrUMgARQqVRwSQ6rd+/g8SfZKUT4fUumYmZoOLP88czLrj6GW4mzdm8ByfWv5iiBqgYpF57RNyrIynnqtRTjkyO8/dYFYpFT7GlF5n9eQ3btYnS2qdfbJEaCxwlmZmZvNdtSPhVvsrf1I6cTw8xMJxE46OUaLtlFSJXRn94k8UoDy/bm0+n0raMEyeTE4uryQqmw4ooN+Ea4cuUMna7F7t95HBvCYZWpdBJRDiPsGtOXr5ZGR8cW/9PEXs/E77URZotisYjiU3mulZBdLhTvAEtLK6QCTXAsrJ7BiSqbZhdZFkxHyvzw01fo7QSJiUk8Hjf3vr1LQNpm6p0aO5qCYXRPGrhl6Ysn+sTN2KnHXJrc4v72HvqLDjgWycADzk12sCyB1kgj/7n60QmDWsNa9MU/md8s/XpNNtZ5LbWPkH4D4eD0+1Q7UUrl84ROz8371HHtUCdenmsul4utLC9lE/Hg1yVtZbS6/wghBKFIllDk3Gah1P3s4uXXNxLjiaM5/wPbbkrE9RxzFQAAAABJRU5ErkJggg== + + + +http://nl.pardus-wiki.org/Special:Search + diff --git a/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_pt.xml b/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_pt.xml new file mode 100644 index 0000000000..cec7b1ab32 --- /dev/null +++ b/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_pt.xml @@ -0,0 +1,10 @@ + +PardusWiki (Portuguese) +PardusWiki +UTF-8 +data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH1gcLASIMwlRuvwAAAwZJREFUOMttk8tuG3UYxX//8djJ+DZx42A7sWI3UuzEiWlLq6oXBEJBLFqBkEBiwYJ3ALFC6iPwAizYIDYIFrQNEiqRgkIb5VKqJi0kxG1KM7Vjj++O7RmPZ1igJEXhrI4+6RwdfTpH8BI2H23Gut1u1ur1+D+43W4UxbuRyWTyhzf5kNxfX/904c7tufhY9BrYCCHAAdu2EZKEAGwHXuSL8xsbD3/JZl/9EkAAaNpe4PvvvlnuHBQyB602hmni8bgBqFZbqKoPRVFoNluEw0P4AvHHH3z48aVINNqUARzHuaEMOplOy+LBw21CQwGKJZ10aoInT59jO338fh/djsH7776JJPcztuPcAD6XAAzDwCU5yLJMZipJvdlCUQZ57/pVDMPEth16lsWQ6qfftxHYmKZ5/INqtULAr3Dh7EV0fZ/IsIzXqyA5B8y9MYUa9GH2egSDIc6cTfPXTomDVuvYQNd1BgZkdnNr7O/cJj1cRxmERg5mRyDgg3ZXoFWGKGoSHk+USrUMgARQqVRwSQ6rd+/g8SfZKUT4fUumYmZoOLP88czLrj6GW4mzdm8ByfWv5iiBqgYpF57RNyrIynnqtRTjkyO8/dYFYpFT7GlF5n9eQ3btYnS2qdfbJEaCxwlmZmZvNdtSPhVvsrf1I6cTw8xMJxE46OUaLtlFSJXRn94k8UoDy/bm0+n0raMEyeTE4uryQqmw4ooN+Ea4cuUMna7F7t95HBvCYZWpdBJRDiPsGtOXr5ZGR8cW/9PEXs/E77URZotisYjiU3mulZBdLhTvAEtLK6QCTXAsrJ7BiSqbZhdZFkxHyvzw01fo7QSJiUk8Hjf3vr1LQNpm6p0aO5qCYXRPGrhl6Ysn+sTN2KnHXJrc4v72HvqLDjgWycADzk12sCyB1kgj/7n60QmDWsNa9MU/md8s/XpNNtZ5LbWPkH4D4eD0+1Q7UUrl84ROz8371HHtUCdenmsul4utLC9lE/Hg1yVtZbS6/wghBKFIllDk3Gah1P3s4uXXNxLjiaM5/wPbbkrE9RxzFQAAAABJRU5ErkJggg== + + + +http://pt.pardus-wiki.org/Special:Search + diff --git a/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_tr.xml b/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_tr.xml new file mode 100644 index 0000000000..7bd6e669b7 --- /dev/null +++ b/network/web/firefox/files/searchplugins/pisilinux-wiki/pisilinux-wiki_tr.xml @@ -0,0 +1,10 @@ + +PardusWiki (Türkçe) +PardusWiki +UTF-8 +data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH1gcLASIMwlRuvwAAAwZJREFUOMttk8tuG3UYxX//8djJ+DZx42A7sWI3UuzEiWlLq6oXBEJBLFqBkEBiwYJ3ALFC6iPwAizYIDYIFrQNEiqRgkIb5VKqJi0kxG1KM7Vjj++O7RmPZ1igJEXhrI4+6RwdfTpH8BI2H23Gut1u1ur1+D+43W4UxbuRyWTyhzf5kNxfX/904c7tufhY9BrYCCHAAdu2EZKEAGwHXuSL8xsbD3/JZl/9EkAAaNpe4PvvvlnuHBQyB602hmni8bgBqFZbqKoPRVFoNluEw0P4AvHHH3z48aVINNqUARzHuaEMOplOy+LBw21CQwGKJZ10aoInT59jO338fh/djsH7776JJPcztuPcAD6XAAzDwCU5yLJMZipJvdlCUQZ57/pVDMPEth16lsWQ6qfftxHYmKZ5/INqtULAr3Dh7EV0fZ/IsIzXqyA5B8y9MYUa9GH2egSDIc6cTfPXTomDVuvYQNd1BgZkdnNr7O/cJj1cRxmERg5mRyDgg3ZXoFWGKGoSHk+USrUMgARQqVRwSQ6rd+/g8SfZKUT4fUumYmZoOLP88czLrj6GW4mzdm8ByfWv5iiBqgYpF57RNyrIynnqtRTjkyO8/dYFYpFT7GlF5n9eQ3btYnS2qdfbJEaCxwlmZmZvNdtSPhVvsrf1I6cTw8xMJxE46OUaLtlFSJXRn94k8UoDy/bm0+n0raMEyeTE4uryQqmw4ooN+Ea4cuUMna7F7t95HBvCYZWpdBJRDiPsGtOXr5ZGR8cW/9PEXs/E77URZotisYjiU3mulZBdLhTvAEtLK6QCTXAsrJ7BiSqbZhdZFkxHyvzw01fo7QSJiUk8Hjf3vr1LQNpm6p0aO5qCYXRPGrhl6Ysn+sTN2KnHXJrc4v72HvqLDjgWycADzk12sCyB1kgj/7n60QmDWsNa9MU/md8s/XpNNtZ5LbWPkH4D4eD0+1Q7UUrl84ROz8371HHtUCdenmsul4utLC9lE/Hg1yVtZbS6/wghBKFIllDk3Gah1P3s4uXXNxLjiaM5/wPbbkrE9RxzFQAAAABJRU5ErkJggg== + + + +http://tr.pardus-wiki.org/Özel:Search + diff --git a/network/web/firefox/pspec.xml b/network/web/firefox/pspec.xml new file mode 100644 index 0000000000..498939df96 --- /dev/null +++ b/network/web/firefox/pspec.xml @@ -0,0 +1,796 @@ + + + + + firefox + http://www.mozilla.org/projects/firefox/ + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + NPL-1.1 + GPLv2 + firefox + app:gui +

Firefox Web Browser + It is more secure and faster to browse the web with Firefox web browser. You can personalize your web browser with many specifications that is not enough to explain in two sentences. + https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/39.0/source/firefox-39.0.source.tar.bz2 + + + mozconfig + pisilinux/browserconfig.properties + + + wget + yasm + nss-devel + nspr-devel + zlib-devel + gtk2-devel + libXt-devel + libSM-devel + libpng-devel + libffi-devel + sqlite-devel + gnutls-devel + hunspell-devel + alsa-lib-devel + dbus-glib-devel + libXcomposite-devel + libXScrnSaver-devel + libjpeg-turbo-devel + pulseaudio-libs-devel + gst-plugins-base-next-devel + + + rhbz-966424.patch + firefox-install-dir.patch + + + + + firefox + + atk + nss + dbus + gtk2 + nsps + zlib + cairo + glib2 + libXt + pango + libffi + libgcc + libpng + pixman + sqlite + libXext + alsa-lib + hunspell + dbus-glib + libXfixes + fontconfig + gdk-pixbuf + libXdamage + libXrender + libXcomposite + libjpeg-turbo + + + /etc/ + /usr/share/doc + /usr/bin + /usr/share/mime + /usr/libexec + /usr/lib/pkgconfig + /usr/share/pixmaps + /usr/lib/firefox + /usr/share/applications + + + + pisilinux/mozillafirefox.desktop + + + pisilinux/firefox-l10n.js + pisilinux/default-prefs.js + + + pisilinux/pisilinux_bookmark-tr.html + pisilinux/pisilinux_bookmark-en.html + pisilinux/pisilinux_bookmark-nl.html + pisilinux/pisilinux_bookmark-de.html + + + System.Package + + + + + firefox-lang-az + lang-az + Firefox üçün Türkçe dil faylı + locale:az + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-az@firefox.mozilla.org + + + + + firefox-lang-be + lang-be + locale:be + system.locale + Беларуская мова пакет для Firefox + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-be@firefox.mozilla.org + + + + + firefox-lang-bs + lang-bs + locale:bs + system.locale + Engleskom jeziku paket za Firefox + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-bs@firefox.mozilla.org + + + + + firefox-lang-ca + lang-ca + Arxiu d'idioma català del Firefox + locale:ca + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-ca@firefox.mozilla.org + + + + + firefox-lang-da + lang-da + Dansk sprogpakke til Firefox + locale:da + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-da@firefox.mozilla.org + + + + + firefox-lang-de + lang-de + Deutsch Sprachdatei für Firefox + locale:de + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-de@firefox.mozilla.org + + + + + firefox-lang-el + lang-el + Ελληνική γλώσσα pack για τον Firefox + locale:el + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-el@firefox.mozilla.org + + + + + firefox-lang-en-US + lang-en-US + English language pack for Firefox + locale:en-US + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-en-US@firefox.mozilla.org + + + + + firefox-lang-en-ZA + lang-en-ZA + South African English language pack for Firefox + locale:en-ZA + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-en-ZA@firefox.mozilla.org + + + + + firefox-lang-en-GB + lang-en-GB + British English language pack for Firefox + locale:en-GB + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-en-GB@firefox.mozilla.org + + + + + firefox-lang-es-AR + lang-es-AR + Paquete de idioma español para Firefox + locale:es-AR + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-es-AR@firefox.mozilla.org + + + + + firefox-lang-es-CL + lang-es-CL + Paquete de idioma español para Firefox + locale:es-CL + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-es-CL@firefox.mozilla.org + + + + + firefox-lang-es-ES + lang-es-ES + Paquete de idioma español para Firefox + locale:es-ES + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-es-ES@firefox.mozilla.org + + + + + firefox-lang-fi + lang-fi + Suomen kielen pack for Firefox + locale:fi + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-fi@firefox.mozilla.org + + + + + firefox-lang-fr + lang-fr + Paquet de langue française pour Firefox + locale:fr + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-fr@firefox.mozilla.org + + + + + firefox-lang-hr + lang-hr + Hrvatski jezični paket za Firefox + locale:hr + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-hr@firefox.mozilla.org + + + + + firefox-lang-hu + lang-hu + Magyar nyelvű pack for Firefox + locale:hu + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-hu@firefox.mozilla.org + + + + + firefox-lang-it + lang-it + Language Pack italiano per Firefox + locale:it + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-it@firefox.mozilla.org + + + + + firefox-lang-lt + lang-lt + Lietuvių kalbos paketas Firefox + locale:lt + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-lt@firefox.mozilla.org + + + + + firefox-lang-nl + lang-nl + Nederlands taalpakket voor Firefox + locale:nl + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-nl@firefox.mozilla.org + + + + + firefox-lang-pl + lang-pl + Polski pakiet językowy dla programu Firefox + locale:pl + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-pl@firefox.mozilla.org + + + + + firefox-lang-pt-BR + lang-pt-BR + Pacote de idioma português para o Firefox + locale:pt-BR + system.locale + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-pt-BR@firefox.mozilla.org + + + + + firefox-lang-pt-PT + lang-pt-PT + locale:pt-PT + system.locale + Pacote de idioma português para o Firefox + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-pt-PT@firefox.mozilla.org + + + + + firefox-lang-ro + lang-ro + locale:ro + system.locale + Pachet de limba română pentru Firefox + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-ro@firefox.mozilla.org + + + + + firefox-lang-ru + lang-ru + locale:ru + system.locale + Русский языковый пакет для Firefox + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-ru@firefox.mozilla.org + + + + + firefox-lang-sr + lang-sr + locale:sr + system.locale + Паковање српски језик за Фирефок + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-sr@firefox.mozilla.org + + + + + firefox-lang-sv-SE + lang-sv-SE + locale:sv-SE + system.locale + Svenska språkpaket för Firefox + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-sv-SE@firefox.mozilla.org + + + + + firefox-lang-tr + lang-tr + locale:tr + system.locale + Firefox için Türkçe dil dosyası + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-tr@firefox.mozilla.org + + + + + firefox-lang-uk + lang-uk + locale:uk + system.locale + Український мовний пакет для Firefox + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-uk@firefox.mozilla.org + + + + + + 2015-08-05 + 39.0 + Version bump, http://www.mozilla.org/en-US/firefox/39.0/releasenotes + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-06-08 + 38.0.5 + Version bump, http://www.mozilla.org/en-US/firefox/38.0.5/releasenotes + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-04-25 + 37.0.2 + Version bump, http://www.mozilla.org/en-US/firefox/37.0.2/releasenotes + PisiLinux Community + admins@pisilinux.org + + + 2015-04-04 + 37.0.1 + Version bump, http://www.mozilla.org/en-US/firefox/37.0.1/releasenotes + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-03-27 + 36.0.4 + Version bump, http://www.mozilla.org/en-US/firefox/36.0/releasenotes + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-02-28 + 36.0 + Version bump, http://www.mozilla.org/en-US/firefox/36.0/releasenotes + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-02-04 + 35.0.1 + Version bump, http://www.mozilla.org/en-US/firefox/35.0.1/releasenotes + PisiLinux Community + admins@pisilinux.org + + + 2014-12-19 + 34.0.5 + Version bump, http://www.mozilla.org/en-US/firefox/34.0.5/releasenotes + PisiLinux Community + admins@pisilinux.org + + + 2014-11-30 + 33.1.1 + Version bump, http://www.mozilla.org/en-US/firefox/33.1.1/releasenotes + PisiLinux Community + admins@pisilinux.org + + + 2014-09-29 + 32.0.3 + Version bump, http://www.mozilla.org/en-US/firefox/32.0.3/releasenotes + PisiLinux Community + admins@pisilinux.org + + + 2014-09-04 + 32.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-08-18 + 31.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-07-05 + 30.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-05-29 + 29.0.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-05-01 + 29.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-29 + 28.0 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2014-03-03 + 27.0.1 + Rebuild for openjdk + PisiLinux Community + admins@pisilinux.org + + + 2014-02-15 + 27.0.1 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2014-02-09 + 27.0 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2013-12-16 + 26.0 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2013-12-01 + 25.0.1 + rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-11-18 + 25.0.1 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2013-11-12 + 25.0 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2013-10-14 + 24.0 + Rebuild for icu4c + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-10-07 + 24.0 + + * fix en-us searchplugins + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-09-17 + 24.0 + + * http://www.mozilla.org/en-US/firefox/23.0.1/releasenotes/ + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-24 + 23.0.1 + + * http://www.mozilla.org/en-US/firefox/23.0.1/releasenotes/ + + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-08 + 23.0 + + * http://www.mozilla.org/en-US/firefox/23.0/releasenotes/ + * fixing bug 809055: Moving Firefox to background while playing a flash video in full screen mode and bring it back to view will freeze the app + + Erdinç Gültekin-Marcin Bojara + erdincgultekin@pisilinux.org + + + 2013-06-27 + 22.0 + Version bump + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-15 + 21.0 + http://www.mozilla.org/en-US/firefox/21.0/releasenotes/ + Erdinç Gültekin-Marcin Bojara + erdincgultekin@pisilinux.org + + + 2013-05-10 + 20.0.1 + http://www.mozilla.org/en-US/firefox/20.0.1/releasenotes/ + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-04-03 + 20.0 + http://www.mozilla.org/en-US/firefox/20.0/releasenotes/ + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-03-11 + 19.0.2 + http://www.mozilla.org/en-US/firefox/19.0.2/releasenotes/ + Erdinç Gültekin + admins@pisilinux.org + + + 2013-02-19 + 19.0 + + * Built-in PDF viewer + * CSS @page is now supported + * security fixes + + Erdinç Gültekin + admins@pisilinux.org + + + 2013-02-08 + 18.0.2 + + * 18.0.2: Fix JavaScript related stability issues + * Support for W3C touch events implemented, taking the place of MozTouch events + * security fixes + + Erdinç Gültekin + admins@pisilinux.org + + + 2013-01-21 + 18.0.1 + bump + Erdinç Gültekin + admins@pisilinux.org + + + 2012-12-02 + 17.0.1 + First release + Demiray Muhterem + bilgi@bilgegunluk.com + + + \ No newline at end of file diff --git a/network/web/firefox/translations.xml b/network/web/firefox/translations.xml new file mode 100644 index 0000000000..228c6fb4f7 --- /dev/null +++ b/network/web/firefox/translations.xml @@ -0,0 +1,161 @@ + + + + firefox + Firefox Web Tarayıcı + Internette gezinmek daha güvenli ve hızlı. İki cümle ile anlatılamayacak ek ozellikler ile açık kaynak kodlu web tarayıcınızı kişiselleştirebilirsiniz. + Firefox Web-Browser + Mit dem Firefox Web-Browser surfen sie sicherer und schneller im Web. Sie können Ihren Web-Browser mit vielen Spezifikationen personalisieren, diese kann man nicht in zwei Sätzen erklären. + Firefox Web Browser + Met Firefox gaat het browsen van het web veiliger en sneller. Het kan met vele toevoegingen aan uw persoonlijke wensen aangepast worden en heeft te veel mogelijkheden om in twee zinnen te beschrijven. + Przeglądarka WWW Firefox + Mozilla Firefox – otwarta przeglądarka internetowa oparta na silniku Gecko, stworzona i rozwijana przez Korporację Mozilla oraz ochotników. + Firefox Navegador Web + Navegue por la web de forma rápida y segura. Navegador web de código abierto que se puede personalizar con características adicionales. + + + + firefox-lang-az + Firefox üçün Türkçe dil faylı + + + + firefox-lang-be + Беларуская мова пакет для Firefox + + + + firefox-lang-bs + Engleskom jeziku paket za Firefox + + + + firefox-lang-ca + Arxiu d'idioma català del Firefox + + + + firefox-lang-da + Dansk sprogpakke til Firefox + + + + firefox-lang-de + Deutsch Sprachdatei für Firefox + + + + firefox-lang-el + Ελληνική γλώσσα pack για τον Firefox + + + + firefox-lang-en-US + English language pack for Firefox + + + + firefox-lang-en-ZA + South African English language pack for Firefox + + + + firefox-lang-en-GB + British English language pack for Firefox + + + + firefox-lang-es-AR + Paquete de idioma español para Firefox + + + + firefox-lang-es-CL + Paquete de idioma español para Firefox + + + + firefox-lang-es-ES + Paquete de idioma español para Firefox + + + + firefox-lang-fi + Suomen kielen pack for Firefox + + + + firefox-lang-fr + Paquet de langue française pour Firefox + + + + firefox-lang-hr + Hrvatski jezični paket za Firefox + + + + firefox-lang-hu + Magyar nyelvű pack for Firefox + + + + firefox-lang-it + Language Pack italiano per Firefox + + + + firefox-lang-lt + Lietuvių kalbos paketas Firefox + + + + firefox-lang-nl + Nederlands taalpakket voor Firefox + + + + firefox-lang-pl + Polski pakiet językowy dla programu Firefox + + + + firefox-lang-pt-BR + Pacote de idioma português para o Firefox + + + + firefox-lang-pt-PT + Pacote de idioma português para o Firefox + + + + firefox-lang-ro + Pachet de limba română pentru Firefox + + + + firefox-lang-ru + Русский языковый пакет для Firefox + + + + firefox-lang-sr + Паковање српски језик за Фирефок + + + + firefox-lang-sv-SE + Svenska språkpaket för Firefox + + + + firefox-lang-tr + Firefox için Türkçe dil dosyası + + + + firefox-lang-uk + Український мовний пакет для Firefox + + \ No newline at end of file