Difference between revisions of "Main Page"

From Tabbles Wiki
Jump to: navigation, search
m
 
(13 intermediate revisions by the same user not shown)
Line 10: Line 10:
  
 
|}
 
|}
<div style="font-size:150%; border:none; margin:0; padding:.1em; text-align:center; color:#000;">Welcome to the Tabbles wiki! Wanna contribute? Write us at info@tabbles.net</div>
+
<div style="font-size:150%; border:none; margin:0; padding:.1em; text-align:center; color:#000;">Welcome to the Tag Forge wiki! Wanna contribute? Write us at info@tabbles.net</div>
 
{| style="width:280px; border:none; background:none;"  
 
{| style="width:280px; border:none; background:none;"  
  
Line 34: Line 34:
  
  
'''Tabbles 4 manual '''
+
'''Tabbles 5 and Confidential manual '''
  
'''English''': [[Tabbles Manual (EN)]]
+
'''English''': [[Tabbles Manual (EN)|Tabbles and Confidential user manual (EN)]],
  
 +
[[Regular expressions]]
  
'''Old version: Tabbles 2.4 manual '''
+
'''Croatian''': [https://tabbles.net/images/wiki/Korisni%C4%8Dki_priru%C4%8Dnik.pdf Tabbles and Confidential (HR)]
  
'''English''': [[Quick Reference]] (thanks to mrdna!), [[Regular expressions]], [[Tips and tricks]], [http://tabbles.net/downloads/browser-integration/ browser integration]
 
 
'''Deutsch''': [[Benutzerhandbuch]], [[Hauptseite]], [[Schnellstart]], [[Begriffserklärung]], [[Reguläre Ausdrücke]] - thanks to [http://www.tabbles.net/wiki/index.php?title=User:Nefycee Nefycee]
 
 
'''Español''': [[Manual de Tabbles (ES)]], [[Referencia rápida]], [[Expresiones regulares]], [[Tips y trucos]] thanks to Lgquirog
 
 
'''Korean''': [[Tabbles Manual (KR)]], thanks to nut4anime
 
 
'''Chinese Simplified''': [[Tabbles Manual (ZH)]], thanks to jfm9513
 
 
'''Portuguese''': [[Tabbles Manual (PT)]], thanks to Helder Muniz
 
 
And as well:
 
 
'''French (WIP)''': [[Tabbles Manual (FR)]], thanks to Cbiger
 
 
'''Russian (WIP)''': [[Tabbles - Руководство пользователя.]], thanks to RedFox
 
  
 +
'''Old version: Tabbles 2.4 manual: ''' [[Benutzerhandbuch | DE]],  [[Manual de Tabbles (ES) | ES]], [[Tabbles Manual (KR) | KR]], [[Tabbles 2.0 Manual (ZH) | ZH]], [[Tabbles Manual (PT) | PT]], [[Tabbles Manual (FR) | FR ]], [[Tabbles - Руководство пользователя. | RU]].
  
  
Line 79: Line 64:
 
|-
 
|-
  
| style="color:#000;padding:2px 5px" | <div id="mp-itn">[http://tabbles.net/feature-list/ Feature list], [http://tabbles.net/what-is-it/quick-intro/ Quick introduction],  [http://tabbles.net/what-is-it/quick-intro/ Longer introduction], [http://tabbles.net/downloads/download-page/ Downloads].</div>
+
| style="color:#000;padding:2px 5px" | <div id="mp-itn">[http://tabbles.net/feature-list/ Feature list]</div>
  
 
|-
 
|-
Line 117: Line 102:
 
|-
 
|-
  
| style="color:#000;padding: 2px" | <div id="mp-tfp"> [Our github page https://github.com/tabbles]
+
| style="color:#000;padding: 2px" | <div id="mp-tfp"> Our github page, here you can find the source code four Outlook plugin, Chrome extension and the API documentation and examples: https://github.com/tabbles  
  
|-
+
= How to tag from command line  =
 +
 
 +
You can tag files by invoke Tabbles from command line, in the following fashion:
 +
 
 +
''Tagger.exe tag_files_pre  -f "C:\Directory\File1.doc" -f "P:\Shared Directory\File2.txt" -t MyTag1 -t MyCoolStuff''
 +
 
 +
And you can also tag URLs in the same way:
 +
 
 +
''tagger.exe tag_url_pre https://tabbles.net  "My fav URL" -t MyTag1 -t CoolUrls''
 +
 
 +
Using the same technique as the Bookmarklet, you can use this to programmatically tag bookmarks, something like this:
 +
 
 +
''javascript:void(location.href='tabbles:tag_url_pre'+';'+encodeURIComponent(document.title)+';'+encodeURIComponent(window.location.href)+';'+'-t'+';'+'InsertTag1'+';'+'-t'+';'+' InsertTag1')''  where the URL and site tile could also be inserted via code.
  
| style="color:#000;padding: 2px" | <div id="mp-tfp"> [[Tabbles Plugin development and API documentation]] (outdated to version 2.4)
 
  
[[Command Line Tagging]]
 
 
</div>
 
</div>
  

Latest revision as of 18:00, 23 February 2019

Welcome to the Tag Forge wiki! Wanna contribute? Write us at info@tabbles.net


Manuals


Tabbles 5 and Confidential manual

English: Tabbles and Confidential user manual (EN),

Regular expressions

Croatian: Tabbles and Confidential (HR)


Old version: Tabbles 2.4 manual: DE, ES, KR, ZH, PT, FR , RU.




Getting started with Tabbles

Community stuff

Coming soon

Links


Development: API and Open Source plugins

Our github page, here you can find the source code four Outlook plugin, Chrome extension and the API documentation and examples: https://github.com/tabbles

How to tag from command line

You can tag files by invoke Tabbles from command line, in the following fashion:

Tagger.exe tag_files_pre -f "C:\Directory\File1.doc" -f "P:\Shared Directory\File2.txt" -t MyTag1 -t MyCoolStuff

And you can also tag URLs in the same way:

tagger.exe tag_url_pre https://tabbles.net "My fav URL" -t MyTag1 -t CoolUrls

Using the same technique as the Bookmarklet, you can use this to programmatically tag bookmarks, something like this:

javascript:void(location.href='tabbles:tag_url_pre'+';'+encodeURIComponent(document.title)+';'+encodeURIComponent(window.location.href)+';'+'-t'+';'+'InsertTag1'+';'+'-t'+';'+' InsertTag1') where the URL and site tile could also be inserted via code.