-
Notifications
You must be signed in to change notification settings - Fork 462
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a9730cb
commit f7ea05f
Showing
25 changed files
with
670 additions
and
56 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: e5df60454524fb28d5e2b3c23043e531 | ||
config: 2fb0bd43195c0b8866b88e83fdab0cff | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
59 changes: 59 additions & 0 deletions
59
api-website/_build/html/_sources/googleanalytics/README.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
.. -*- restructuredtext -*- | ||
=========================================== | ||
Google Analytics extension for Sphinx | ||
=========================================== | ||
|
||
:author: Domen Kožar <[email protected]> | ||
|
||
|
||
About | ||
===== | ||
|
||
This extensions allows you to track generated html files | ||
with Google Analytics web service. | ||
|
||
|
||
Installing from sphinx-contrib checkout | ||
--------------------------------------- | ||
|
||
Checkout googleanalytics sphinx extension:: | ||
|
||
$ git clone https://github.com/sphinx-contrib/googleanalytics | ||
|
||
Change into the googleanalytics directory:: | ||
|
||
$ cd googleanalytics | ||
|
||
Install the module:: | ||
|
||
$ python setup.py install | ||
|
||
|
||
Enabling the extension in Sphinx_ | ||
--------------------------------- | ||
|
||
Just add ``sphinxcontrib.googleanalytics`` to the list of extensions in the ``conf.py`` | ||
file. For example:: | ||
|
||
extensions = ['sphinxcontrib.googleanalytics'] | ||
|
||
|
||
Configuration | ||
------------- | ||
|
||
For now one optional configuration is added to Sphinx_. It can be set in | ||
``conf.py`` file: | ||
|
||
``googleanalytics_id`` <string>: | ||
UA id for your site, example:: | ||
googleanalytics_id = 'UA-123-123-123' | ||
|
||
``googleanalytics_enabled`` <bool>: | ||
True by default, use it to turn off tracking. | ||
|
||
|
||
.. Links: | ||
.. _gnuplot: http://www.gnuplot.info/ | ||
.. _Sphinx: http://sphinx.pocoo.org/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,200 @@ | ||
<!DOCTYPE html> | ||
<html class="writer-html5" lang="en" data-content_root="../"> | ||
<head> | ||
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
<!-- Google tag (gtag.js) --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VH1ZNBVHSP"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
gtag('config', 'G-VH1ZNBVHSP'); | ||
</script> | ||
|
||
<script async src="https://www.googletagmanager.com/gtag/js?id=GTM-NX3SZD79"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'GTM-NX3SZD79'); | ||
|
||
</script> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Google Analytics extension for Sphinx — SalesGPT documentation</title> | ||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=80d5e7a1" /> | ||
<link rel="stylesheet" type="text/css" href="../_static/css/theme.css?v=19f00094" /> | ||
<link rel="stylesheet" type="text/css" href="../_static/custom.css?v=a36129ee" /> | ||
|
||
|
||
<!--[if lt IE 9]> | ||
<script src="../_static/js/html5shiv.min.js"></script> | ||
<![endif]--> | ||
|
||
<script src="../_static/jquery.js?v=5d32c60e"></script> | ||
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script> | ||
<script src="../_static/documentation_options.js?v=5929fcd5"></script> | ||
<script src="../_static/doctools.js?v=888ff710"></script> | ||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script> | ||
<script> | ||
<!-- Google Tag Manager --> | ||
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | ||
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | ||
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | ||
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); | ||
})(window,document,'script','dataLayer','GTM-NX3SZD79');</script> | ||
<!-- End Google Tag Manager --> | ||
</script> | ||
<script>https://www.googletagmanager.com/gtag/js?id=GTM-NX3SZD79</script> | ||
<script>google_analytics_tracker.js</script> | ||
<script src="../_static/js/theme.js"></script> | ||
<link rel="index" title="Index" href="../genindex.html" /> | ||
<link rel="search" title="Search" href="../search.html" /> | ||
</head> | ||
|
||
<body class="wy-body-for-nav"> | ||
<div class="wy-grid-for-nav"> | ||
<nav data-toggle="wy-nav-shift" class="wy-nav-side"> | ||
<div class="wy-side-scroll"> | ||
<div class="wy-side-nav-search" > | ||
|
||
|
||
|
||
<a href="../index.html" class="icon icon-home"> | ||
SalesGPT | ||
</a> | ||
<div role="search"> | ||
<form id="rtd-search-form" class="wy-form" action="../search.html" method="get"> | ||
<input type="text" name="q" placeholder="Search docs" aria-label="Search docs" /> | ||
<input type="hidden" name="check_keywords" value="yes" /> | ||
<input type="hidden" name="area" value="default" /> | ||
</form> | ||
</div> | ||
<div class="wy-menu-extra"> | ||
<a href="https://salesgpt.vercel.app" class="btn-primary">Docs</a> | ||
</div> | ||
</div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu"> | ||
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p> | ||
<ul> | ||
<li class="toctree-l1"><a class="reference internal" href="../salesgpt/salesgpt.agents.html">Agents</a></li> | ||
<li class="toctree-l1"><a class="reference internal" href="../salesgpt/salesgpt.chains.html">Chains</a></li> | ||
<li class="toctree-l1"><a class="reference internal" href="../salesgpt/salesgpt.logger.html">Logger</a></li> | ||
<li class="toctree-l1"><a class="reference internal" href="../salesgpt/salesgpt.parsers.html">Parsers</a></li> | ||
<li class="toctree-l1"><a class="reference internal" href="../salesgpt/salesgpt.prompts.html">Prompts</a></li> | ||
<li class="toctree-l1"><a class="reference internal" href="../salesgpt/salesgpt.prompts_cn.html">Prompts_cn</a></li> | ||
<li class="toctree-l1"><a class="reference internal" href="../salesgpt/salesgpt.salesgptapi.html">SalesGPT API</a></li> | ||
<li class="toctree-l1"><a class="reference internal" href="../salesgpt/salesgpt.stages.html">Stages</a></li> | ||
<li class="toctree-l1"><a class="reference internal" href="../salesgpt/salesgpt.templates.html">Templates</a></li> | ||
<li class="toctree-l1"><a class="reference internal" href="../salesgpt/salesgpt.tools.html">Tools</a></li> | ||
<li class="toctree-l1"><a class="reference internal" href="../salesgpt/salesgpt.version.html">Version</a></li> | ||
</ul> | ||
|
||
</div> | ||
</div> | ||
</nav> | ||
|
||
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"><nav class="wy-nav-top" aria-label="Mobile navigation menu" > | ||
<i data-toggle="wy-nav-top" class="fa fa-bars"></i> | ||
<a href="../index.html">SalesGPT</a> | ||
</nav> | ||
|
||
<div class="wy-nav-content"> | ||
<div class="rst-content"> | ||
<div role="navigation" aria-label="Page navigation"> | ||
<ul class="wy-breadcrumbs"> | ||
<li><a href="../index.html" class="icon icon-home" aria-label="Home"></a></li> | ||
<li class="breadcrumb-item active">Google Analytics extension for Sphinx</li> | ||
<li class="wy-breadcrumbs-aside"> | ||
<a href="../_sources/googleanalytics/README.rst.txt" rel="nofollow"> View page source</a> | ||
</li> | ||
</ul> | ||
<hr/> | ||
</div> | ||
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article"> | ||
<div itemprop="articleBody"> | ||
|
||
<section id="google-analytics-extension-for-sphinx"> | ||
<h1>Google Analytics extension for Sphinx<a class="headerlink" href="#google-analytics-extension-for-sphinx" title="Link to this heading"></a></h1> | ||
<dl class="field-list simple"> | ||
<dt class="field-odd">author<span class="colon">:</span></dt> | ||
<dd class="field-odd"><p>Domen Kožar <<a class="reference external" href="mailto:domen%40dev.si">domen<span>@</span>dev<span>.</span>si</a>></p> | ||
</dd> | ||
</dl> | ||
<section id="about"> | ||
<h2>About<a class="headerlink" href="#about" title="Link to this heading"></a></h2> | ||
<p>This extensions allows you to track generated html files | ||
with Google Analytics web service.</p> | ||
<section id="installing-from-sphinx-contrib-checkout"> | ||
<h3>Installing from sphinx-contrib checkout<a class="headerlink" href="#installing-from-sphinx-contrib-checkout" title="Link to this heading"></a></h3> | ||
<p>Checkout googleanalytics sphinx extension:</p> | ||
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span>$ git clone https://github.com/sphinx-contrib/googleanalytics | ||
</pre></div> | ||
</div> | ||
<p>Change into the googleanalytics directory:</p> | ||
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span>$ cd googleanalytics | ||
</pre></div> | ||
</div> | ||
<p>Install the module:</p> | ||
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span>$ python setup.py install | ||
</pre></div> | ||
</div> | ||
</section> | ||
<section id="enabling-the-extension-in-sphinx"> | ||
<h3>Enabling the extension in <a class="reference external" href="http://sphinx.pocoo.org/">Sphinx</a><a class="headerlink" href="#enabling-the-extension-in-sphinx" title="Link to this heading"></a></h3> | ||
<p>Just add <code class="docutils literal notranslate"><span class="pre">sphinxcontrib.googleanalytics</span></code> to the list of extensions in the <code class="docutils literal notranslate"><span class="pre">conf.py</span></code> | ||
file. For example:</p> | ||
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">extensions</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'sphinxcontrib.googleanalytics'</span><span class="p">]</span> | ||
</pre></div> | ||
</div> | ||
</section> | ||
<section id="configuration"> | ||
<h3>Configuration<a class="headerlink" href="#configuration" title="Link to this heading"></a></h3> | ||
<p>For now one optional configuration is added to <a class="reference external" href="http://sphinx.pocoo.org/">Sphinx</a>. It can be set in | ||
<code class="docutils literal notranslate"><span class="pre">conf.py</span></code> file:</p> | ||
<dl class="simple"> | ||
<dt><code class="docutils literal notranslate"><span class="pre">googleanalytics_id</span></code> <string>:</dt><dd><dl class="simple"> | ||
<dt>UA id for your site, example::</dt><dd><p>googleanalytics_id = ‘UA-123-123-123’</p> | ||
</dd> | ||
</dl> | ||
</dd> | ||
<dt><code class="docutils literal notranslate"><span class="pre">googleanalytics_enabled</span></code> <bool>:</dt><dd><p>True by default, use it to turn off tracking.</p> | ||
</dd> | ||
</dl> | ||
</section> | ||
</section> | ||
</section> | ||
|
||
|
||
</div> | ||
</div> | ||
<footer> | ||
|
||
<hr/> | ||
|
||
<div role="contentinfo"> | ||
<p>© Copyright 2024, Filip-Michalsky.</p> | ||
</div> | ||
|
||
Built with <a href="https://www.sphinx-doc.org/">Sphinx</a> using a | ||
<a href="https://github.com/readthedocs/sphinx_rtd_theme">theme</a> | ||
provided by <a href="https://readthedocs.org">Read the Docs</a>. | ||
|
||
|
||
</footer> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
</section> | ||
</div> | ||
<script> | ||
jQuery(function () { | ||
SphinxRtdTheme.Navigation.enable(true); | ||
}); | ||
</script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.