User talk:Instructor: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
No edit summary
 
(8 intermediate revisions by 6 users not shown)
Line 18: Line 18:


As for the "Example Headers In Pages". It's hard to update all pages (hope to me, will not have to do it again). BTW: Some of the examples have name like: "Example1" "Example2" and I think font size is more suitable with <b>Example</b> in comparison with ===Example===.
As for the "Example Headers In Pages". It's hard to update all pages (hope to me, will not have to do it again). BTW: Some of the examples have name like: "Example1" "Example2" and I think font size is more suitable with <b>Example</b> in comparison with ===Example===.
== "That" Search Problem ==


deguix see post in your discussion page about search problem.
deguix see post in your discussion page about search problem.
: That is a wiki bug and I can't fix it. The minimum limit is 4 characters. I added a note to the message that appears when a search is not found about this limit. We just need to wait newer versions of MediaWiki to contain this fix. Depending on case, [[User:kichik|kichik]] can disable search features to use either Google or Yahoo! for the searches. -- [[User:Deguix|deguix]] 11:38, 5 Jul 2005 (PDT)
== Is it a bug? ==
Try to call
  ${VersionCompare} "1.1.1.9" "1.1.1.09" $R0
which outputs the result as $R0=1.
Is it a bug? I supposed it should be $R=0.
If it is really a bug, can you fix it?
== RE: Is it a bug? ==
http://forums.winamp.com/showthread.php?postid=1694788#post1694788
[[User:Instructor|Instructor]] 07:25, 21 July 2007 (PDT)
== License? ==
What license is the Locate plugin under?  I'd like to use it in an open-source project, but I haven't been able to find any information about the license of that plugin.  Thanks. -- pswartz at pculture dot org
== RE: License? ==
Under NSIS license.
[[User:Instructor|Instructor]] 06:01, 9 April 2008 (PDT)
== License of nsProcess ==
What is the license of the NsProcess plugin? We'd like to redistribute the source code with our GPL software. Thanks! -- etix
== XML_plugin ==
About two errors that you mentioned on plugin page:
"'TinyXPath::o_xpath_node' : cannot convert parameter 3 from 'TiXmlNode *' to 'const TiXmlNode *&' C:\Users\linards\Downloads\XML\Source\xml.cpp 858 1 xml Error 10 error C2664: 'TinyXPath::o_xpath_attribute' : cannot convert parameter 3 from 'TiXmlAttribute *' to 'const TiXmlAttribute *&' C:\Users\linards\Downloads\XML\Source\xml.cpp 875 1 xml ... any help fixing them highly appreciated!"
You can fix it by puting direct conversion of memory addresse to a constant:
    if (TinyXPath::o_xpath_node(node, szBuf, nodeTmp)) >> if (TinyXPath::o_xpath_node(node, szBuf, (const TiXmlNode *&)nodeTmp))
Actually this is highly not recommended but it seems like it is the only way to fix them whithout interuption of TinyXML sources
Addition:
To succsesfully build on Visual studio 2012 also changed link from libc to libcmt.lib .

Latest revision as of 14:55, 30 April 2014

Header Files Template

Please, in your pages, use this to bring up the headers template without needing to change all your pages "{{User:Instructor/Headers/Template}}". You can create subpages for your user to make easier to update your pages when there is text in common (like this headers note). I cannot keep changing all pages because you have a lot of them... -- deguix 21:25, 4 Jul 2005 (PDT)

Example Headers In Pages

Also, for the examples, there is a better way to organize them, instead of putting example names inside parenthesis:

== Examples ==
=== Finding one file ===
Put code here...
=== Write the text found in a file ===
Put code here...

-- deguix 21:25, 4 Jul 2005 (PDT)

Answer

I don't update "Header Files Template" information I update all design. If forum link will changed I change link to it with "{{User:Instructor/Headers/Template}}", but now there is no necessity in this.

As for the "Example Headers In Pages". It's hard to update all pages (hope to me, will not have to do it again). BTW: Some of the examples have name like: "Example1" "Example2" and I think font size is more suitable with Example in comparison with ===Example===.

"That" Search Problem

deguix see post in your discussion page about search problem.

That is a wiki bug and I can't fix it. The minimum limit is 4 characters. I added a note to the message that appears when a search is not found about this limit. We just need to wait newer versions of MediaWiki to contain this fix. Depending on case, kichik can disable search features to use either Google or Yahoo! for the searches. -- deguix 11:38, 5 Jul 2005 (PDT)

Is it a bug?

Try to call

 ${VersionCompare} "1.1.1.9" "1.1.1.09" $R0

which outputs the result as $R0=1. Is it a bug? I supposed it should be $R=0.

If it is really a bug, can you fix it?


RE: Is it a bug?

http://forums.winamp.com/showthread.php?postid=1694788#post1694788 Instructor 07:25, 21 July 2007 (PDT)

License?

What license is the Locate plugin under? I'd like to use it in an open-source project, but I haven't been able to find any information about the license of that plugin. Thanks. -- pswartz at pculture dot org

RE: License?

Under NSIS license. Instructor 06:01, 9 April 2008 (PDT)

License of nsProcess

What is the license of the NsProcess plugin? We'd like to redistribute the source code with our GPL software. Thanks! -- etix

XML_plugin

About two errors that you mentioned on plugin page:

"'TinyXPath::o_xpath_node' : cannot convert parameter 3 from 'TiXmlNode *' to 'const TiXmlNode *&' C:\Users\linards\Downloads\XML\Source\xml.cpp 858 1 xml Error 10 error C2664: 'TinyXPath::o_xpath_attribute' : cannot convert parameter 3 from 'TiXmlAttribute *' to 'const TiXmlAttribute *&' C:\Users\linards\Downloads\XML\Source\xml.cpp 875 1 xml ... any help fixing them highly appreciated!"

You can fix it by puting direct conversion of memory addresse to a constant:

   if (TinyXPath::o_xpath_node(node, szBuf, nodeTmp)) >> if (TinyXPath::o_xpath_node(node, szBuf, (const TiXmlNode *&)nodeTmp))

Actually this is highly not recommended but it seems like it is the only way to fix them whithout interuption of TinyXML sources

Addition: To succsesfully build on Visual studio 2012 also changed link from libc to libcmt.lib .