Git Product home page Git Product logo

r7.epsilon-volgau.com's Introduction

About R7.Epsilon-volgau.com

The R7.Epsilon-volgau.com package provide various customization resources for R7.Epsilon skin used by volgau.com portals. You can use it as an example of various R7.Epsilon customization options or fork it to make customization package for your own website.

Install & upgrade

  1. Install R7.Epsilon skin package.
  2. Install R7.Epsilon-volgau.com package.

Uninstall

The R7.Epsilon-volgau.com is listed under the Libraries section in Host > Extensions.

  1. Uninstall R7.Epsilon-volgau.com package.
  2. Re-install R7.Epsilon skin package.

License

AGPLv3

The R7.Epsilon-volgau.com 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.

Customization

Please see the R7.Epsilon wiki

r7.epsilon-volgau.com's People

Contributors

roman-yagodin avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

r7.epsilon-volgau.com's Issues

Re-add config deserialization tests

Need to re-add config deserialization tests like one below. Main problem is that tests project should reference R7.Epsilon.dll somehow to get config classes.

using System;
using R7.Epsilon.Components;
using Xunit;
using System.IO;
using YamlDotNet.Serialization.NamingConventions;
using YamlDotNet.Serialization;

namespace R7.Epsilon.Tests
{
    public class CustomPortalConfigTests
    {
        [Theory]
        [InlineData (0)]
        [InlineData (2)]
        [InlineData (3)]
        public void PortalConfigDeserializationTest (int portalNumber)
        {
            var configFile = Path.Combine ("..", "..", "..", "R7.Epsilon", "Customizations",
                "volgau.com", "Portals", portalNumber.ToString (), "R7.Epsilon.yml");

            using (var configReader = new StringReader (File.ReadAllText (configFile))) {
                var deserializer = new DeserializerBuilder ().WithNamingConvention (new HyphenatedNamingConvention ()).Build ();
                Assert.NotNull (deserializer.Deserialize<EpsilonPortalConfig> (configReader));
            } 
        }
    }
}

DNN resource editor doesn't work properly with CDATA

Looks like the DNN 8 resource editor have issues with resource strings having CDATA.

To ensure compatibility, we could just avoid using CDATA in resources (which is hard) or convert them to compatible form during install package build (which is not universal).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.