Bysoft drupal6 pre-configured site

15 views
Skip to first unread message

Jent Zheng

unread,
Sep 22, 2011, 4:44:44 AM9/22/11
to Bysoft CMS
Hi all sweetly buddy,

I am planning to build a drupal6 pre-configured site including pre-
configured DB(many modules) and theme, I hope it will be finished
before the end of October.

This site could be a startkit for every drupal6 project. The goal is
to reduce time at the beginning of project.

Here's my mindmap:
http://www.mindmeister.com/114932391
pw:smile

If you have some idea, just leave me your message in this topic~

David Adam

unread,
Sep 22, 2011, 6:06:56 AM9/22/11
to bysof...@googlegroups.com
Very good idea!

Best regards
David Adam
CMS Team Leader

Guangzhou BysoftChina Software Development Co., LTD
广州市思睿软件开发有限公司

No3. Zhongshan Er Rd, Unit 6A-C, Guangzhou PR China
中国广州市中山二路3号粤运大厦6楼ABC室

Tel : +86(20)3761 2461
Fax: +86(20)3761 3479

www.bysoftchina.com

Hi all sweetly buddy,

__________ Information from ESET NOD32 Antivirus, version of virus signature database 6483 (20110921) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com


__________ Information from ESET NOD32 Antivirus, version of virus signature database 6484 (20110922) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com

Jent Zheng

unread,
Sep 26, 2011, 10:34:31 PM9/26/11
to Bysoft CMS

Wei dai

unread,
Sep 28, 2011, 1:42:49 AM9/28/11
to Bysoft CMS
I checked the iframes. Nice!

One thought is that can we have a search engine page?

On Sep 27, 10:34 am, Jent Zheng <jentw...@gmail.com> wrote:
> The wireframehttps://cacoo.com/diagrams/krI3WOIWdYMN8jEo/edit

Jent Zheng

unread,
Oct 17, 2011, 10:44:39 PM10/17/11
to Bysoft CMS
https://docs.google.com/document/d/1B67R5JrrhHghvA0Wm77q78xf6ZQcNlfWPg514NzGKIs/edit?authkey=COvMnIMH&hl=en_US&authkey=COvMnIMH

Here's a guide for drupal training, show you how to override template
and css naming.

David Adam

unread,
Oct 17, 2011, 11:01:40 PM10/17/11
to bysof...@googlegroups.com
Hello,

I want every themer take a close look at this document and prepare your questions in today's FO technical meeting.


Thanks a lot Jent! :) A very good document.

Best regards
David Adam
CMS Team Leader

Guangzhou BysoftChina Software Development Co., LTD
广州市思睿软件开发有限公司

No3. Zhongshan Er Rd, Unit 6A-C, Guangzhou PR China
中国广州市中山二路3号粤运大厦6楼ABC室

Tel : +86(20)3761 2461
Fax: +86(20)3761 3479

www.bysoftchina.com

-----Original Message-----
From: bysof...@googlegroups.com [mailto:bysof...@googlegroups.com] On Behalf Of Jent Zheng

https://docs.google.com/document/d/1B67R5JrrhHghvA0Wm77q78xf6ZQcNlfWPg514NzGKIs/edit?authkey=COvMnIMH&hl=en_US&authkey=COvMnIMH

__________ Information from ESET NOD32 Antivirus, version of virus signature database 6515 (20111004) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com


__________ Information from ESET NOD32 Antivirus, version of virus signature database 6515 (20111004) __________

Jent Zheng

unread,
Oct 17, 2011, 11:53:10 PM10/17/11
to Bysoft CMS
For the people who have trouble to access GoogleDocs, here's the file
stored in sarge.

\\sarge\bysoft\Themer\DrupalThemingGuide.doc

Chris

unread,
Oct 18, 2011, 4:48:52 AM10/18/11
to Bysoft CMS
Coz jQuery is a built-in library in Drupal, and the default version is
1.2.6 on Drupal 6.
Do you figure out how to upgrade it?

Jent Zheng

unread,
Oct 18, 2011, 5:47:20 AM10/18/11
to Bysoft CMS
So far on this demo site, it can be updated to jq-1.3.2 (http://
drupal.org/project/jquery_update)

But if you want to use the latest version of jQ, you may add it by you
own and use jQuery.noConflict();

Chris

unread,
Oct 18, 2011, 5:49:04 AM10/18/11
to bysof...@googlegroups.com
Can you write it down to the doc? Coz most of the plugin that in DIF require higher version.

Wei dai

unread,
Oct 18, 2011, 6:38:38 AM10/18/11
to Bysoft CMS
The recommended method is to run 2 versions of jQuery side-by-side.

Check out this article: http://drupal.org/node/1058168


Basically, once you have this:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/
libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript">
var $jq = jQuery.noConflict();
</script>


Then you can use "$" to refer to the old version of jquery from the
core, and $jq for the new version.

Chris

unread,
Oct 18, 2011, 11:04:54 PM10/18/11
to bysof...@googlegroups.com
I know there's a way to use different versions.

My point is the $ and jQuery objects.
In fact, jQuery.noConflict() will cause some problems:
$ -> 1.2.6/1.3.2 (default)
jQuery -> 1.2.6/1.3.2 (default)
After noConflict() called, for example we have 1.6.4:
$ -> 1.2.6/1.3.2 (work as expected)
jQuery -> 1.6.4
If we use noConflict() with parameter, jQuery.noConflict(true), will get:
$ -> 1.2.6/1.3.2 (work as expected)
jQuery -> 1.2.6/1.3.2

The differences will cause problems:
Some plugins are using "$" to do the initialization, some are using "jQuery".
If newer method is called with older $/jQuery will cause error.

I want to know do we have a correct way to resolve this problem.

Jent Zheng

unread,
Oct 19, 2011, 11:16:52 PM10/19/11
to Bysoft CMS
Good news!

I had commit this demo site to svn and UAT. Now you can checkout this
version 1.0 demo site and have fun~~

SVN:
https://bisrvpreprod1.bysoft.fr/svn/drupal/bysoftModules/trunk/Drupal_DIF

Site URL:(admin:123456)
http://drupal-dif.uat-drupal.lan-guanghzou.bysoft.fr/

UAT file path:
\\\\192.168.0.204\bysoft\drupal-dif

Johnny Liu

unread,
Oct 20, 2011, 10:52:25 PM10/20/11
to bysof...@googlegroups.com
well done, Jent
I am very glad that I can see the v1 out before my leaving,
I am sure the Drupal DIF will be a big time saver for future projects.

:)
Reply all
Reply to author
Forward
0 new messages