Browse Source

[ADD] social_media_icon_extention_xing

pull/5/head
Benjamin Bachmann 9 years ago
parent
commit
f9a091b312
  1. 63
      social_media_icon_extention_xing/README.md
  2. 21
      social_media_icon_extention_xing/__init__.py
  3. 44
      social_media_icon_extention_xing/__openerp__.py
  4. 22
      social_media_icon_extention_xing/models/__init__.py
  5. 32
      social_media_icon_extention_xing/models/res_config.py
  6. 31
      social_media_icon_extention_xing/models/website.py
  7. BIN
      social_media_icon_extention_xing/static/description/XING.png
  8. BIN
      social_media_icon_extention_xing/static/description/blog.png
  9. BIN
      social_media_icon_extention_xing/static/description/icon.png
  10. 29
      social_media_icon_extention_xing/static/description/index.html
  11. BIN
      social_media_icon_extention_xing/static/description/settings.png
  12. BIN
      social_media_icon_extention_xing/static/description/webpage.png
  13. 28
      social_media_icon_extention_xing/views/res_config.xml
  14. 20
      social_media_icon_extention_xing/views/website_blog_template.xml
  15. 19
      social_media_icon_extention_xing/views/website_templates.xml
  16. 24
      social_media_icon_extention_xing/views/website_views.xml

63
social_media_icon_extention_xing/README.md

@ -0,0 +1,63 @@
<center>
<a href="http://www.xing.com/">
<img class="oe_picture" width="100" src="https://github.com/blooparksystems/website/blob/8.0/website_social_media_icon_extention/static/description/XING.png?raw=true">
</a>
Extend Social Media Links
=========================
<img class="oe_picture" width="700" src="https://github.com/blooparksystems/website/blob/8.0/website_social_media_icon_extention/static/description/settings.png?raw=true">
<img class="oe_picture" width="700" src="https://github.com/blooparksystems/website/blob/8.0/website_social_media_icon_extention/static/description/webpage.png?raw=true">
Currently added:
Xing
</center>
Integration example:
--------------------
normal social icons:
<a t-att-href="website.social_facebook"
t-if="website.social_facebook"><i class="fa fa-facebook-square"/></a>
<a t-att-href="website.social_twitter"
t-if="website.social_twitter"><i class="fa fa-twitter"/></a>
<a t-att-href="website.social_linkedin"
t-if="website.social_linkedin"><i class="fa fa-linkedin"/></a>
<a t-att-href="website.social_youtube"
t-if="website.social_youtube"><i class="fa fa-youtube-play"/></a>
<a t-att-href="website.social_googleplus"
t-if="website.social_googleplus"><i class="fa fa-google-plus-square"/></a>
<a t-att-href="website.social_github"
t-if="website.social_github"><i class="fa fa-github"/></a>
the new social icons:
<a t-att-href="website.social_xing"
t-if="website.social_xing"><i class="fa fa-xing"/></a>
Credits
=======
Contributors
------------
* Benjamin Bachmann (benniphx@gmail.com)
Maintainer
----------
<a href="http://odoo-community.org">
<img class="oe_picture" alt="Odoo Community Association" src="http://odoo-community.org/logo.png">
</a>
This module is maintained by the OCA.
OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.
To contribute to this module, please visit <a href="http://odoo-community.org">http://odoo-community.org</a>.

21
social_media_icon_extention_xing/__init__.py

@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Odoo, an open source suite of business apps
# This module copyright (C) 2015 bloopark systems (<http://bloopark.de>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from . import models

44
social_media_icon_extention_xing/__openerp__.py

@ -0,0 +1,44 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Odoo, an open source suite of business apps
# This module copyright (C) 2015 bloopark systems (<http://bloopark.de>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': "Social Media Icon Extension",
'summary': """Xing Extension for the social media icons from the odoo
core""",
'author': "bloopark systems GmbH & Co. KG, "
"Odoo Community Association (OCA)",
'website': "http://www.bloopark.de",
'license': 'AGPL-3',
'category': 'Social Media',
'version': '1.0',
'depends': [
'base',
'website',
'website_blog'
],
'data': [
'views/website_templates.xml',
'views/website_views.xml',
'views/website_blog_template.xml',
'views/res_config.xml',
],
}

22
social_media_icon_extention_xing/models/__init__.py

@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Odoo, an open source suite of business apps
# This module copyright (C) 2015 bloopark systems (<http://bloopark.de>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from . import res_config
from . import website

32
social_media_icon_extention_xing/models/res_config.py

@ -0,0 +1,32 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Odoo, an open source suite of business apps
# This module copyright (C) 2015 bloopark systems (<http://bloopark.de>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp.models import TransientModel
from openerp import fields
class WebsiteConfigSettings(TransientModel):
"""Adds the fields for Social Media Icons."""
_inherit = 'website.config.settings'
social_xing = fields.Char('Xing Account',
related='website_id.social_xing')

31
social_media_icon_extention_xing/models/website.py

@ -0,0 +1,31 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Odoo, an open source suite of business apps
# This module copyright (C) 2015 bloopark systems (<http://bloopark.de>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp.models import Model
from openerp import fields
class Website(Model):
"""Adds the fields for Social Media Icons."""
_inherit = 'website'
social_xing = fields.Char('Xing Account')

BIN
social_media_icon_extention_xing/static/description/XING.png

After

Width: 296  |  Height: 107  |  Size: 6.6 KiB

BIN
social_media_icon_extention_xing/static/description/blog.png

After

Width: 294  |  Height: 596  |  Size: 43 KiB

BIN
social_media_icon_extention_xing/static/description/icon.png

After

Width: 128  |  Height: 128  |  Size: 9.2 KiB

29
social_media_icon_extention_xing/static/description/index.html

@ -0,0 +1,29 @@
<section class="oe_container">
<div class="oe_row oe_spaced">
<div class="oe_span12">
<h3 class="oe_slogan">
Social Media Icon Extention for
</h3>
</div>
<div class="oe_span6">
<div>
<a href="http://www.xing.com/">
<p>&nbsp;</p>
<img class="oe_picture"
src="XING.png">
</a>
</div>
</div>
<div class="oe_span12">
<p class="oe_mt32">
Extend Social Media Links
</p>
</div>
<div class="oe_span12">
<div>
<img class="oe_picture"
src="settings.png">
</div>
</div>
</div>
</section>

BIN
social_media_icon_extention_xing/static/description/settings.png

After

Width: 979  |  Height: 322  |  Size: 79 KiB

BIN
social_media_icon_extention_xing/static/description/webpage.png

After

Width: 1295  |  Height: 246  |  Size: 66 KiB

28
social_media_icon_extention_xing/views/res_config.xml

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_website_config_settings_ext"
model="ir.ui.view">
<field name="name">Website settings</field>
<field name="model">website.config.settings</field>
<field name="inherit_id" ref="website.view_website_config_settings"/>
<field name="arch"
type="xml">
<xpath expr="//div[@name='social_googleplus']"
position="after">
<label for="social_xing"/>
<div name="social_xing">
<div class="oe_inline">
<field name="social_xing"
placeholder="https://www.xing.com"/>
</div>
</div>
</xpath>
</field>
</record>
</data>
</openerp>

20
social_media_icon_extention_xing/views/website_blog_template.xml

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<template id="opt_blog_rc_follow_us_extra"
name="Extra Social Links"
inherit_id="website_blog.opt_blog_rc_follow_us">
<xpath expr="//h2[@class='mt4']"
position="after">
<a t-att-href="website.social_xing"
t-if="website.social_xing">
<i class="fa fa-xing"/>
</a>
</xpath>
</template>
</data>
</openerp>

19
social_media_icon_extention_xing/views/website_templates.xml

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<template id="footer_default_extra"
inherit_id="website.footer_default">
<xpath expr="//a[6]"
position="after">
<a t-att-href="website.social_xing"
t-if="website.social_xing">
<i class="fa fa-xing"/>
</a>
</xpath>
</template>
</data>
</openerp>

24
social_media_icon_extention_xing/views/website_views.xml

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_website_form_extra"
model="ir.ui.view">
<field name="name">website.form</field>
<field name="model">website</field>
<field name="inherit_id"
ref="website.view_website_form"/>
<field name="arch"
type="xml">
<field name="social_github"
position="after">
<field name="social_xing"
placeholder="http://www.xing.com"/>
</field>
</field>
</record>
</data>
</openerp>
Loading…
Cancel
Save