Git Product home page Git Product logo

yeeki's Introduction

yeeki's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

yeeki's Issues

Installer

Installer should be able to handler the whole installing process when using Yeeki as an application.

Audit

Need audit feature so one will be able to view who did what and when.

Conflict handling

There should be a way to deal with conflicts. A conflict is when two users are editing the same article and then saving their changes:

R = read
S = save

User1---R------------S
User2----------R-----------S

User1---R--------S
User2----------R-S

Before saving select article again. If revision isn't the same as when started editing, then we have a conflict.

We can either:

  • Tell user that there's a conflict and article can't be saved (not friendly).
  • Try to merge changes somehow or show diff with editor window side by side (OK?).

Media manager

Need a media manager able to upload files, images, video, revisions and insert these into wiki pages.

Yii2 module

Is there any plan for Yii2
I'm willing to contribute in spare time if anyone from core developers volunteers to port to Yii2

markdown и id

markdown не дает выводить id для тегов, а значит нельзя делать якоря, и ссылки на конкретные части страницы, что для документации в общем-то критично.
я у себя решил это вот так:

protected function compileDocSyntax($str)
{
    $str = preg_replace_callback("/\[#(\w+)\]/",array($this,'renderAnchor'),$str);
    return $str;
}

protected function renderAnchor($matches)
{
    return "<span id='{$matches[1]}'></span>";
}

Поправьте меня, если я не прав или может есть лучшее решение?

auth

С чем связано решение использовать собственный auth и user а не auth приложения?
Будут отличия?
Может, добавить

<?php
public function getUserAdapter()
{
   Yii::import('wiki.components.auth.*');
   if($this->_userAdapter===null)
   {
        if($this->userAdapter===null)
            $this->_userAdapter=Yii::app()->user;
        else
            $this->_userAdapter = Yii::createApplication($this->userAdapter);
    }
    return $this->_userAdapter;
}

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.