Fischer-Bayern.de
 FAQFAQ   SuchenSuchen   MitgliederlisteMitgliederliste   BenutzergruppenBenutzergruppen   RegistrierenRegistrieren 
 ProfilProfil   Einloggen, um private Nachrichten zu lesenEinloggen, um private Nachrichten zu lesen   LoginLogin 

SpecialChars&Tags2HTMLFromList
Gehe zu Seite 1, 2  Weiter
 
Dieses Forum ist gesperrt, du kannst keine Beiträge editieren, schreiben oder beantworten.   Dieses Thema ist gesperrt, du kannst keine Beiträge editieren oder beantworten.    Fischer-Bayern.de Foren-Übersicht -> Pool
Vorheriges Thema anzeigen :: Nächstes Thema anzeigen  
Autor Nachricht
iScript
•---->
•---->


Anmeldedatum: 29.03.2001
Beiträge: 1116

BeitragVerfasst am: 20.01.2007 - 23:44    Titel: SpecialChars&Tags2HTMLFromList Antworten mit Zitat

Hier ein Script, mit dem man Sonderzeichen oder HTML-Tags in Text einfügen kann, indem diese aus einer Liste ausgewählt werden.

Ursprünglich für TextWrangler zum editieren von HTML-Seiten gedacht, sollte es universell in jedem Programm nutzbar sein. Mit FastScriptLite oder Shortcut-Progs lässt es sich auf Taste legen.
In TextWrangler selbst, den ich jedem AppleScripter hiermit nochmals wärmstens empfehlen kann, ist das Script natürlich am besten im programm-eigenen Scriptmenü aufgehoben u. somit jederzeit per Doppelklick aus der Script-Palette zu erreichen.
(anregungen, wünsche u. feedback erwünscht)
So, korrigierte Version:

SpecialChars&Tags2HTMLFromList hat Folgendes geschrieben:
(* set frontApp to currently used application *)
tell application "System Events"
   set frontApp to (title of every application process whose frontmost is true) as text
end tell
------------------------------------------------------------------------------
-- list with: discription or special characters | html-code | number of using ArrowLeft-key after intertion
-- (please note, that some spezial characters for html-tags have to escape with "\" in this script-strings)
set tag_list to
   {"a href", "<a href=\"\">________________</a>", 22}, ¬
   {"[fixed space]", "&nbsp;", 0}, ¬
   {(«data utxtF803» as Unicode text), "F803", 0}, ¬
   {(«data utxtF804» as Unicode text), "F804", 0}, ¬
   {(«data utxt25B6» as Unicode text), "25B6", 0}, ¬
   {(«data utxt21E5» as Unicode text), "21E5", 0}, ¬
   {(«data utxt21B5» as Unicode text), "21B5", 0}, ¬
   {(«data utxt2318» as Unicode text), "2318", 0}, ¬
   {(«data utxt2325» as Unicode text), "2325", 0}, ¬
   {(«data utxt21E7» as Unicode text), "21E7", 0}, ¬
   {(«data utxt2620» as Unicode text), "2620", 0}, ¬
   {(«data utxt262E» as Unicode text), "262E", 0}, ¬
   {(«data utxt270C» as Unicode text), "270C", 0}, ¬
   {(«data utxt266C» as Unicode text), "266C", 0}, ¬
   {(«data utxtF802» as Unicode text), "F802", 0}, ¬
   {(«data utxt2704» as Unicode text), "2704", 0}, ¬
   {(«data utxt260F» as Unicode text), "260F", 0}, ¬
   {(«data utxt2714» as Unicode text), "2714", 0}, ¬
   {(«data utxt2718» as Unicode text), "2718", 0}, ¬
   {(«data utxt2601» as Unicode text), "2601", 0}, ¬
   {(«data utxt231B» as Unicode text), "231B", 0}, ¬
   {(«data utxt2981» as Unicode text), "2981", 0}, ¬
   {(«data utxt29BE» as Unicode text), "29BE", 0}, ¬
   {(«data utxt265B» as Unicode text), "265B", 0}, ¬
   {(«data utxt2425» as Unicode text), "2425", 0}, ¬
   {(«data utxt3013» as Unicode text), "3013", 0}, ¬
   {(«data utxt0E4F» as Unicode text), "0E4F", 0} ¬
      }
------------------------------------------------------------------------------
-- initialize choose_list
set choose_list to {}
-- creating the list of selectable html-tags/special html-chars
repeat with t in tag_list
   if class of item 1 of t is Unicode text then
      set choose_list to choose_list & ((item 1 of t & " " & my specialchar(item 2 of t)) as Unicode text) as list
   else
      set choose_list to choose_list & (item 1 of t) as list
   end if
end repeat

-- your choice from list
activate
set chosen_tag to (choose from list choose_list with title "your choice:" with prompt "select tag of spezial character")

-- starting the insertion of the selected html-tag/special char
if chosen_tag is not false then
   repeat with tag in tag_list
      if (class of item 1 of chosen_tag) is Unicode text then
         my inserttags(text 5 thru -1 of (chosen_tag as Unicode text) as text, 0, frontApp)
         exit repeat
      else if (chosen_tag is in tag) then
         my inserttags((item 2 of tag), (item 3 of tag), frontApp)
         exit repeat
      end if
   end repeat
end if
------------------------------------------------------------------------------
-- instertion of full tags
on inserttags(tag_text, ArrowLeft, frontApp)
   tell application frontApp
      activate
      tell application "System Events"
         keystroke tag_text
         repeat ArrowLeft times
            key code 123
         end repeat
      end tell
   end tell
end inserttags

on specialchar(char_hex)
   set char_dez to "&#" & (do shell script ("printf \"%d\" 0x" & char_hex)) & ";"
end specialchar

_________________
- anholn deit kriegen -


Zuletzt bearbeitet von iScript am 22.01.2007 - 18:55, insgesamt 6-mal bearbeitet
Nach oben
Benutzer-Profile anzeigen Private Nachricht senden E-Mail senden Website dieses Benutzers besuchen AIM-Name
Skeeve
•---->
•---->


Anmeldedatum: 20.04.2006
Beiträge: 1067

BeitragVerfasst am: 21.01.2007 - 01:56    Titel: Antworten mit Zitat

>>"?" kann nicht in Typ String umgewandelt werden<< bekomme ich beim Zeichen 25BA
_________________
"All problems are solved in slightly less than half an hour" (Chumbawamba, "Hey Hey We're The Junkies")
Nach oben
Benutzer-Profile anzeigen Private Nachricht senden
iScript
•---->
•---->


Anmeldedatum: 29.03.2001
Beiträge: 1116

BeitragVerfasst am: 21.01.2007 - 11:10    Titel: Antworten mit Zitat

stimmt. es funktionieren nur folgende zeichen aus der liste:
▶⇥↵⌘⌥⇧✌♬✄☏✔✘⦁⦾〓๏
hmmm. komisch, dass die nicht funktionierenden zeichen sich per choose from list trotzdem darstellen lassen!?
das kapiere ich nicht.
mach mal 25B6 draus, dann klappt das zeichen.
ich werd' die liste gelegentlich erweitern und auch tags hinzufügen.

über anregungen und wünsche und feedback würd ich mich freuen.
dann weiss ich auch, dass ich's nicht umsonst gemacht hab. Wink
_________________
- anholn deit kriegen -
Nach oben
Benutzer-Profile anzeigen Private Nachricht senden E-Mail senden Website dieses Benutzers besuchen AIM-Name
Skeeve
•---->
•---->


Anmeldedatum: 20.04.2006
Beiträge: 1067

BeitragVerfasst am: 21.01.2007 - 11:22    Titel: Antworten mit Zitat

Das Problem ist wohl, daß "choose from list" (Zitat) "reinen Text" liefert.

Mein Vorschlag: Bau die entities (&#...; heißt entity, nicht tag) in die Auswahlliste mit ein. Siehe hier:
set frontApp to application "jEdit"

set choose_list to every paragraph of (do shell script "perl -Mopen=:utf8,:std -e 'printf(qq/%s\\t&#%d;\\n/,chr hex $_, hex $_) foreach (qw(
      F803
      F804
      25BA
      21E5
      21B5
      2318
      2325
      21E7
      2620
      262E
      270C
      266C
      F802
      2704
      260F
      2714
      2718
      2601
      231B
      2981
      29BE
      265B
      2425
      3013
      0E4F
   ));'")
set chosen_entity to (choose from list choose_list with title "your choice:" with prompt "select tag of spezial character")
if chosen_entity is not false then
   set chosen_entity to item 1 of chosen_entity
   insertentity(text (1 + (offset of tab in chosen_entity)) thru -1 of chosen_entity, 0, frontApp)
end if

on insertentity(entity_text, ArrowLeft, frontApp)
   tell frontApp
      activate
      tell application "System Events"
         keystroke entity_text
         repeat ArrowLeft times
            key code 70
         end repeat
      end tell
   end tell
end insertentity

Nicht berücksichtigt: Das "Arrow Left" und die spezielle Bezeichnung von entities wie &nbsp;. Das kann man übrigens auch zuverlässig als '#160; schreiben.

Erzähl mir mehr über die Randbedingungen. Dann kann ich das noch mit einkodieren.
_________________
"All problems are solved in slightly less than half an hour" (Chumbawamba, "Hey Hey We're The Junkies")
Nach oben
Benutzer-Profile anzeigen Private Nachricht senden
iScript
•---->
•---->


Anmeldedatum: 29.03.2001
Beiträge: 1116

BeitragVerfasst am: 21.01.2007 - 12:55    Titel: Antworten mit Zitat

Skeeve hat Folgendes geschrieben:
Das Problem ist wohl, daß "choose from list" (Zitat) "reinen Text" liefert.

aber dann müsste das doch klappen, tut's aber nicht:
set choosed_tag to (choose from list choose_list with title "your choice:" with prompt "select tag of spezial character") as Unicode text
das mit dem entity in der liste wäre natürlich eine möglichkeit. das kann man dann besser abgreifen/vergleichen. gute idee.

So, neue Version siehe oben.
Nach oben
Benutzer-Profile anzeigen Private Nachricht senden E-Mail senden Website dieses Benutzers besuchen AIM-Name
Skeeve
•---->
•---->


Anmeldedatum: 20.04.2006
Beiträge: 1067

BeitragVerfasst am: 21.01.2007 - 20:46    Titel: Antworten mit Zitat

&# fehlt
_________________
"All problems are solved in slightly less than half an hour" (Chumbawamba, "Hey Hey We're The Junkies")
Nach oben
Benutzer-Profile anzeigen Private Nachricht senden
Skeeve
•---->
•---->


Anmeldedatum: 20.04.2006
Beiträge: 1067

BeitragVerfasst am: 22.01.2007 - 02:34    Titel: Vielleicht gefällt Dir das hier auch... Antworten mit Zitat

Meine Version.

'schuldigung, iScript! Ich mag Deinen Initialisierungsteil nicht. Der ist mir zu "Eintippaufwendig".

  1. 2 Mal die Zeichenfolge eingeben, die für spezialzeichen benötigt wird
  2. Positionale Parameter in den Listen
  3. Man muß zählen um den Cursor zurück zu schicken


Zitat:
(* edit the application-name here to start this script with shortcuts
and use it in the application of your choice
*)
set frontApp to application "jEdit"

-- description see below at "prepare"
set possible_options to prepare({¬
   {display:"link", insert:"<a href=\"<CURSOR>\"> </a>"}, ¬
   {display:"Geschuetztes Leerzeichen", insert:"&nbsp;"}, ¬
   "F803", ¬
   "F804", ¬
   "25BA", ¬
   "21E5", ¬
   "21B5", ¬
   "2318", ¬
   "2325", ¬
   "21E7", ¬
   "2620", ¬
   "262E", ¬
   "270C", ¬
   "266C", ¬
   "F802", ¬
   "2704", ¬
   "260F", ¬
   "2714", ¬
   "2718", ¬
   "2601", ¬
   "231B", ¬
   "2981", ¬
   "29BE", ¬
   "265B", ¬
   "2425", ¬
   "3013", ¬
   "0E4F"})

set text_to_insert to choose_text_or_entity from possible_options

if text_to_insert is not false then insert_text into frontApp from text_to_insert

--
--
-- end of main program
--
-- Handlers follow
--
--
-- inserts the text_to_insert
-- into the frontApp
-- The first occurence of <CURSOR> will be removed
-- and the application will receive some crsr-left
-- keystrokes to move the cursor to that
-- position in the text
on insert_text into frontApp from text_to_insert
   set i to offset of "<CURSOR>" in text_to_insert
   if i > 0 then
      set text_to_insert to text 1 thru (i - 1) of text_to_insert & text (i + 8) thru -1 of text_to_insert
   end if
   tell frontApp
      activate
      tell application "System Events"
         keystroke text_to_insert
         if i > 0 then
            repeat (length of text_to_insert) - i + 1 times
               key code 123
            end repeat
         end if
      end tell
   end tell
end insert_text

-- prepares a list, "choose_text_or_entity"
-- expects.
-- expects a list containing either HEX Strings or
-- records.
-- The HEX Strings represent the UNICODE hex code of
-- a charecter. It's entity text will be inserted
-- the record has to be of the form:
-- {
-- display:"Text to show"
-- insert:"Text to insert"
-- }
on prepare(theList)
   set displaystrings to {}
   set callPerl to false
   repeat with i from 1 to count of theList
      if class of item i of theList is string then
         set callPerl to true
         copy item i of theList & " " to end of displaystrings
      else
         copy "0 " to end of displaystrings
      end if
   end repeat
   set i to 0
   set optionList to {display:{}, special:{}, insert:{}}
   set dspl to a reference to display of optionList
   set insrt to a reference to insert of optionList
   set spcl to a reference to special of optionList
   if callPerl then
      repeat with elt in every paragraph of (do shell script "perl -Mopen=:utf8,:std <<''
      foreach (qw(" & (displaystrings as string) & ")) {
         if ($_) {
            printf qq/%s\\t&#%d;\\n/,chr hex $_, hex $_;
         }
         else {
            print qq/\\n/;
         }
      }")
         set i to i + 1
         if length of elt > 0 then
            copy elt to the end of dspl
         else
            copy insert of item i of theList to the end of insrt
            copy display of item i of theList to the end of spcl
            copy tab & the end of spcl to the end of dspl
         end if
      end repeat
   else
      repeat count of theList times
         set i to i + 1
         copy insert of item i of theList to the end of insrt
         copy display of item i of theList to the end of spcl
         copy tab & the end of spcl to the end of dspl
      end repeat
   end if
   return optionList
end prepare

-- expects "possible_optinos", a record of lists
-- {
-- display:{ list of things to select from }
-- each things must contain a tab
-- returns everything after the tab except
-- if the tab is the first charecter
-- in that case everything after the tab is
-- the text that will be searched in
-- special:{ list of special texts }
-- if it's found, the item at the same position in
-- insert:{ list of texts to insert }
-- will be returned
-- }
on choose_text_or_entity from possible_options
   set chosen_text to choose from list display of possible_options
   if chosen_text is not false then
      set chosen_text to item 1 of chosen_text
      set i to offset of tab in chosen_text
      set text2insert to text (1 + i) thru -1 of chosen_text
      if i = 1 then
         repeat while item i of special of possible_options /= text2insert
            set i to i + 1
         end repeat
         return item i of insert of possible_options
      end if
      return text2insert
   end if
   return false
end choose_text_or_entity

Update: Kleine Korrektur die der Performanceverbesserung dient, wenn bereits alle Elemente der Liste für "prepare" im recordformat sind. Kleine Korrektur für den Abbruchfall.
_________________
"All problems are solved in slightly less than half an hour" (Chumbawamba, "Hey Hey We're The Junkies")
Nach oben
Benutzer-Profile anzeigen Private Nachricht senden
Nishaknapp
•--->
•--->


Anmeldedatum: 16.03.2022
Beiträge: 217

BeitragVerfasst am: 13.06.2022 - 09:13    Titel: Antworten mit Zitat

Why not settling on games that is fun and at the same time your earning. Well it'll make suspense because of the game as well but dude just try it and it gave me hope while pandemic is real rn. Gambling and Money Management Tips for Online Casino Players
Nach oben
Benutzer-Profile anzeigen Private Nachricht senden
FrankJScott
Gast





BeitragVerfasst am: 09.09.2022 - 00:59    Titel: Top SEO Service Info Antworten mit Zitat

In reply to the guy talking about affordable seo,high trust flow backlinks,relevant backlinks free,free dofollow backlinks,cheap backlinks,search engine optimization experts,link building specialist,web design,quick backlinks,reddit seo backlinks,best web designs,backlink agency,get backlinks from wikipedia,ecommerce web developer,offsite seo,seo and marketing,spammy backlinks,affordable seo packages,ahrefs link, I can vouch for this best website services for better seo rankings for website development company,white label link building,ecommerce link building,buy high da pbn backlinks cheap,free profile creation sites,semrush plans,moz backlinks,etsy seo 2021,link building strategies list,building backlinks to your website,web design and web development,reddit seo,top 10 seo,apa itu backlinks,seo package prices,ecommerce website design company,forum submission backlinks,forum profile backlinks list,search engine optimisation link building,high da profile creation,also. See More Best SEO Service Blog 592_51a

Zuletzt bearbeitet von FrankJScott am 30.09.2022 - 21:06, insgesamt einmal bearbeitet
Nach oben
FrankJScott
Gast





BeitragVerfasst am: 26.09.2022 - 22:48    Titel: Updated SEO Service TipsSite Antworten mit Zitat

In reply to the people inquiring about top 100 backlinks sites, sitewide backlinks, backlink speed, buy 724ws backlink, no inbound links, broken link building service, I highly suggest this excellent seo website services blog or link building list, wordpress maintenance, dofollow backlinks websites, google serp, top profile creation sites, relevant backlinks, as well as this awesome seo website services advice as well as profile backlink site 2021, angular seo, edu gov backlinks list, dr backlinks, buy white hat backlinks, backlinko guest post, on top of this high rated seo website services url which is also great. Also have a look at this awesome seo website services url as well as bad backlinks seo, seo consultant, seo keyword rank, squarespace transfer ownership, awr seo, yoastseo, and don't forget this high rated seo website services tips on top of semrush link building, crypto backlinks, high da profile creation websites, local search optimization, offsite seo, low cost website design, on top of recommended seo website services url which is also worth a look. I also recommend this great seo website services tips on top of content backlinks, back link free, web 2.0 backlink list, off page seo backlinko, seo project, broken link building service, on top of this best seo website services site and don't forget back link maker, yoast local seo, seo backlink agency, backlink specialist, strongest backlinks, profile creation list, as well as useful seo website services infoas well as marketing website design, ping backlink, buy pbn backlinks cheap, seo rank monitor, internet design, masspings free backlink, which is also great. Finally, have a look at this excellent seo website services forum for good measure. Check more Excellent Crocs Shoes Advice bad72d5
Nach oben
FrankJScott
Gast





BeitragVerfasst am: 01.10.2022 - 17:51    Titel: High Rated Packaging Machine Blog Antworten mit Zitat

Faire dame conversations sur machine automatique emballage souple montréal, machine emballage modulaire, machine d'emballage primaire, solutions automatiques emaballage entreprise québec, emballeuse latérale de variétés, formation personnel emballage, solutions automatisées palettisation québec, emballage secondaire de marque, panne mécanique emballage, emballage pour améliorer la sécurité des produits, machines d'emballage fabriquée au canada, étuyeuse panachage québec, emballeuse automatique québec, machine emballeuse bières, nouvelle génération équipement emballage, types courants d'équipements d'emballage secondaire, encaisseuse canada, emballage par transfert thermique, changement fréquent format emballage, je suggère ceci rembourrage emballage commerce en ligne pour acheter machine emballage canettes montréal, emballage inviolable, machine emballage automatique sodas, fournisseur emballage bière, machine d'emballage sous film rétractable, tendance technologique emballage, formation de la main-d'oeuvre, automatiser production emballage, machines d'emballage secondaire, machine emballage top loader montréal, solution automatique emballage bières, bon type d'emballage, emballage final bière canada, encartonneuse chocolat, emballage canette montréal, soda bouteille ou canette, machine automatique d'emballage québec, machine d'encaissage wrap around, avantages machine emballage automatique top load, pièces sav machine emballage, also. See More Top Packaging Machine Blog ef595_0
Nach oben
FrankJScott
Gast





BeitragVerfasst am: 04.10.2022 - 13:17    Titel: Top Air Quality Blog Antworten mit Zitat

In reply to the lady asking about furnace maintenance near me, air care heating and cooling, modern heating and cooling, hvac contractors near me, radiant floor heating boiler, geothermal heating and cooling, I highly suggest this awesome hvac services advice or geothermal home heating, blue ridge heating and cooling, gunthers heating and air, boiler company near me, best heating and air, air comfort heating and cooling, and don't forget this high rated mini split ac installation & replacement url as well as lloyd plumbing and heating, dons heating, heating and cooling repair near me, furnace maintenance, hvac commercial companies, heating engineer, and don't forget this awesome air duct cleaning details which is also great. Also have a look at this top air duct cleaning blog and don't forget all star heating and air, gas boiler repair, d and g boiler care, bower heating and air, gas furnace maintenance near me, central heating engineer, on top of this recommended indoor air quality site and don't forget electric home furnace, boiler near me, gas boiler maintenance, central heating and air, air tech heating, split unit ac installation, and don't forget excellent air duct cleaning details which is also worth a look. I also suggest this great air duct cleaning blog and don't forget hvac commercial companies, heat and air, allied heating and cooling, warm air heating engineers near me, emergency boiler repair near me, best heating and air, alongside all this recommended mini split ac installation & replacement details as well as h20 plumbing and heating, plumbing & heating near me, wilsons heating, day heating, commercial hvac, air tech heating and cooling, and don't forget new indoor air quality blog alongside all trusted plumbing and heating, furnace tune up, heat exchanger repair, navien heating system, action heating and air conditioning, heat and air, which is also great. Finally, have a look at this useful boiler repair & replacement forum for good measure. Check more Great SEO Service TipsSite 47b4aba
Nach oben
FrankJScott
Gast





BeitragVerfasst am: 01.12.2022 - 20:25    Titel: Excellent Toronto Rapper Blog Antworten mit Zitat

To the man talking about good raps to use, women rap lyrics, funny rap lyrics, lil nas x old town road lyrics meaning, 50 cent birthday lyrics, good rap lyrics to use, I highly suggest this top Toronto rapper details or easy fast rap lyrics, simple rap lyrics for beginners, lil durk gucci, free rap lyrics to use for songs, hardcore rap lyrics, gangster rap lyrics, not to mention this new Toronto rapper url and don't forget mac miller song lyrics, reebok drops rick ross, rap lyrics with rhymes, best life cardi b lyrics, npr podcast louder than a riot, rap lyrics for auto rap battles, alongside all this best Toronto rapper details which is also great. also have a look at this top rated Toronto rapper tips on top of biggie smalls to all the ladies in the place, fastest rap song lyrics, funny rap battle lyrics, best unused rap lyrics, generate rap, krs one boom bap, as well as this new Toronto rapper forum as well as rap generation, pimp c friends, g eazy freestyle, rick ross reebok, funny rap lyrics to say to your friends, m&m rap lyrics, on top of recommended Toronto rapper forum which is also worth a look. i also suggest this awesome Toronto rapper site alongside all rap lyrics that work with any beat, benzino daughter song lyrics, nicki minaj barbie dreams lyrics, romesh ranganathan podcast hip hop, free rap lyrics about money, free rap song lyrics to use, and don't forget this high rated Toronto rapper site not to mention romesh hip hop, clean rap lyrics, random lyrics for rap, boom bap nation, we mac miller lyrics, best new lyrical rappers, alongside all awesome Toronto rapper info and don't forget good lyrics for rap battles, hip hop saved my life with romesh ranganathan, rap music podcasts, rap lyrics about style, freestyle rap clean, we mac miller lyrics, which is also great. finally, have a look at this best Toronto rapper info with meek mill championships lyrics, best biggie lyrics, simple rap lyrics for beginners, random rap lyrics freestyle, rap captions for instagram post, smile mac miller, for good measure.
Nach oben
FrankJScott
Gast





BeitragVerfasst am: 01.12.2022 - 20:31    Titel: Updated Toronto Rapper Site Antworten mit Zitat

In reply to the guy talking about lil nas x old town road lyrics meaning, rap lyrics about business, post your rap lyrics, rap lyrics for beginners, moula 1st, clean rap songs lyrics, I highly recommend this top Toronto rapper advice or sick rap lyrics, a rap that goes with any beat, boombapburger, random lyrics to rap to, hip hop rap lyrics freestyle, rap bap, alongside all this new Toronto rapper url alongside all famous dex lyrical lemonade, boom bap instrumental, rap lyrics for any beat, tupac music lyrics, random rap lyrics freestyle, youtube lil nas x old town road lyrics, not to mention this awesome Toronto rapper info which is also great. also have a look at this excellent Toronto rapper info on top of rap lyrics on trial, lyrical rap lyrics, free for profit rap lyrics, best day ever lyrics mac miller, biggie smalls to all the ladies in the place, g eazy release party, as well as this awesome Toronto rapper details not to mention short rap lyrics, motivational rap lyrics, rap lyrics that go with anything, rap songs for beginners lyrics, anonymous rap lyrics, drake song with eminem lyrics, not to mention updated Toronto rapper tips which is also worth a look. i also recommend this excellent Toronto rapper tips not to mention dark boom bap, mac miller boom, rap lyrics for mom, sick underground rap lyrics, hip hop saved my life podcast, sax bap, alongside all this updated Toronto rapper advice on top of rap lyrics for auto rap battles, on me meek mill, mac miller faces lyrics, best biggie smalls lyrics, own rap lyrics, tupac song dear mama lyrics, alongside all best Toronto rapper details as well as best day ever lyrics mac miller, sick underground rap lyrics, that fast rap lyrics, redman lyrics lil durk, best tupac lyrics, gucci gucci lil durk, which is also great. finally, have a look at this new Toronto rapper info with random rap lyrics, good unused rap lyrics, hip hop radio podcast, best mac miller lyrics for captions, drill rap lyrics, hip hop patriot podcast, for good measure.
Nach oben
FrankJScott
Gast





BeitragVerfasst am: 01.12.2022 - 20:41    Titel: High Rated Toronto Rapper Info Antworten mit Zitat

for the lady asking about new boom bap, auto generated rap lyrics, reebok drops rick ross, best rap lyrics for rap battles, rap lyrics about cars, ghostwriter rick ross lyrics, I highly recommend this top Toronto rapper link or best mac miller song lyrics, controversial rap lyrics, dirty rap song lyrics, lil wayne clever lyrics, meek mill dreams lyrics, lupe fiasco and royce podcast, on top of this awesome Toronto rapper blog and don't forget hennessy rap lyrics, hip hop podcast 2021, rap lyrics online, hip hop daily podcast, drill rap lyrics, ludacris new flow, alongside all this new Toronto rapper advice which is also great. also have a look at this top Toronto rapper details alongside all long rap lyrics, rap punchlines examples, wine and hip hop podcast, boom bap nation, rap battle freestyle lyrics, good roast rap lyrics, and don't forget this awesome Toronto rapper details and don't forget best rap podcasts on spotify, podcast about rap, mac miller boom, rap lyrics to any beat, free rap lyrics to use, lyrical female rappers, not to mention updated Toronto rapper site which is also worth a look. i also recommend this high rated Toronto rapper blog as well as rap lyrics freestyle, rap god fast lyrics, youtube rapper token, best funny rap lyrics, boom bap fl studio, podcast lofi, as well as this high rated Toronto rapper forum and don't forget best hip hop podcast, good hip hop podcasts, free lyrics to rap, inspirational rap lyrics, rap notepad, rap lyrics without context, and don't forget useful Toronto rapper link on top of aggressive rap lyrics, good rap lyrics not used, sugar hill rapper's delight lyrics, best day ever lyrics mac miller, kyrie rapping, clean raps for rap battles, which is also great. finally, have a look at this high rated Toronto rapper site with best freestyle rap lyrics, best unused rap lyrics, family friendly rap lyrics, dmx stop drop lyrics, yeezy sneakers lil wayne lyrics, best kendrick lamar lyrics, for good measure.
Nach oben
Beiträge der letzten Zeit anzeigen:   
Dieses Forum ist gesperrt, du kannst keine Beiträge editieren, schreiben oder beantworten.   Dieses Thema ist gesperrt, du kannst keine Beiträge editieren oder beantworten.    Fischer-Bayern.de Foren-Übersicht -> Pool Alle Zeiten sind GMT + 2 Stunden
Gehe zu Seite 1, 2  Weiter
Seite 1 von 2

 
Gehe zu:  
Du kannst keine Beiträge in dieses Forum schreiben.
Du kannst auf Beiträge in diesem Forum nicht antworten.
Du kannst deine Beiträge in diesem Forum nicht bearbeiten.
Du kannst deine Beiträge in diesem Forum nicht löschen.
Du kannst an Umfragen in diesem Forum nicht mitmachen.


Powered by phpBB © 2001, 2002 phpBB Group
Deutsche Übersetzung von phpBB.de


AppleScript für absolute Starter